Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: PDL works for real number matrix operations, but not working for complex number matrix operations.

by gmacfadden (Sexton)
on Mar 19, 2007 at 19:20 UTC ( [id://605559]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    use warnings;
    ...
    print "\$matrixB = ", $matrixB,"<br>\n";
    print "\$matrixX = ", $matrixM->inv x $matrixB,"<br>\n";
    exit(0);
    
  2. or download this
    $matrixM =
    [ [ 1  2 -1 -1] 
    ...
    $matrixX =
    [ [         3] [         2]
      [         1] [         1]]
    
  3. or download this
    #! /usr/bin/perl -w
    use warnings;
    ...
    print "\$matrixB = ", $matrixB,"<br>\n";
    print "\$matrixX = ", $matrixM->inv x $matrixB,"<br>\n";
    exit(0);
    
  4. or download this
    $matrixM =[   [  [1 1] [2 1] ]    [ [ 1 -2] [ 2 -1] ]   ]
    $matrixB =[  [ 5  8] [10 -5] ]
    ...
      [  0  21] ]
     [ [ 5 -6]
      [ 0 -7] ] ]
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-25 07:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found