As far as you matrix question I can say that I have used the MatrixReal
module
(http://theoryx5.uwinnipeg.ca/CPAN/data/Math-MatrixReal/MatrixReal.html)
for some numerical methods programming and have been very satisfied with
it. It may well server your needs as well. I have not used the module with
MacPerl however but you should, by all indications, have no problem.
Best Regards,
Adam Russell
Adam Stern wrote:
> Hi, I was wondering if anyone could tell me how to put a list of lists
> into a hash array, and how do I access it. I know this is wrong, but it
> conveys the idea:
>
> @arrayname{key} = ( [0,1,2,3,4],
> [1,2,3,4,5],
> [2,3,4,5,6],
> [3,4,5,6,7],
> [4,5,6,7,8]).
>
> Also, another question. I know perl supports array slicing, but how
> advanced does it get into it. Can it do extensive stuff like Fortran
> shown in this picture:
> http://bingweb.binghamton.edu/~head/CS471/NOTES/RUNTIME/2slice.gif
>
> Thanks for all your help.
>
> - Adam Stern