in reply to Working with complex, not real number matrices
Have you tried Math::Complex? It might just work.
my $wakky = Math::Complex->make(5, 6); my $matrix1 = Math::MatrixReal->new_from_rows( [ [1, 1, 1, 2], [1, 0, $wakky, 3],[2,-1, 0,-1], [0, 1, 0, 1] ]);
-Paul
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Working with complex, not real number matrices
by gmacfadden (Sexton) on Mar 15, 2007 at 23:55 UTC |