Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Perl & Math: A Quick Reference

by barrachois (Pilgrim)
on Aug 17, 2003 at 16:57 UTC ( [id://284429]=note: print w/replies, xml ) Need Help??


in reply to Perl & Math: A Quick Reference

I wrote a Vector.pm module when I was exploring how to do perl math with Inline::C, which might be a useful example for people thinking of going that route.

While I didn't try to put in more than the basics, it does let you create and work with big vectors of doubles, like this:

use Vector qw(vector); my $a = vector( size=>10000, first=>0.0, by=>0.01 ); my $b = sin($a); my $c = $a + $b; print $c->[200];
You can find the source code, documentation, and a test suite at http://cs.marlboro.edu/code/perl/modules/Math/Vector/

Replies are listed 'Best First'.
Re: Re: Perl & Math: A Quick Reference
by chunlou (Curate) on Aug 17, 2003 at 22:54 UTC
    Excellent demonstration of the use of Inline::C as well.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://284429]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 05:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found