Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: array assignment

by fglock (Vicar)
on Nov 12, 2004 at 19:32 UTC ( [id://407489]=note: print w/replies, xml ) Need Help??


in reply to array assignment

PDL and Math::Matrix can do that:

use Math::Matrix; my $x = new Math::Matrix ( [1,2,3] ); my $y = new Math::Matrix ( [4,5,6] ); $result = $x->add( $y ); print $result; # 5.00000 7.00000 9.00000

Replies are listed 'Best First'.
Re^2: array assignment
by etj (Deacon) on Jun 22, 2022 at 19:57 UTC
    To spell out the PDL version of that (I find it prettier, but I may be biased):
    use PDL; my $x = pdl [1,2,3]; my $y = pdl [4,5,6]; print $x + $y; # [5 7 9]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-20 16:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found