Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: creating matrices for PDL module

by Angharad (Pilgrim)
on Jul 01, 2005 at 12:43 UTC ( [id://471692]=note: print w/replies, xml ) Need Help??


in reply to creating matrices for PDL module

Thanks for your replies. I'll try that :)

Replies are listed 'Best First'.
Re^2: creating matrices for PDL module
by sapnac (Beadle) on Jul 01, 2005 at 14:13 UTC
    This will create the matrix that you want. This is tested. Hope this helps;
    #!/usr/bin/perl -w open(MATRIX, "matrixfile.dat") || die "Error: Can't open matrixfile fi +le for reading: $!\n"; $i=0; while ($spool = <MATRIX>) { chomp($spool); @arr = split(/ /,$spool); for ($x=0;$x<= $#arr;$x++) { $matrix[$i][$x] = $arr[$x];} $i++; } # end while $x=$x-1; for ($j=0;$j<$i;$j++) { for ($r=0;$r<4;$r++) { print "[ "; $cntr=0;$c=$j; for($cntr=0;$cntr<4;$cntr++) { if($c gt $x) { $c=0; } print " $matrix[$r][$c] " ; $c++; } print " ] \n"; } print "\n"; }
Re^2: creating matrices for PDL module
by Angharad (Pilgrim) on Jul 01, 2005 at 12:46 UTC
    Oh .. i use emacs by the way, not notepad ;)
      Have you typed M-x perl-mode, selected all your text (perhaps using cua-mode) and typed in M-x indent-region?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-24 12:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found