Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Creating multidimentional arrays dynamically

by sflitman (Hermit)
on Aug 13, 2010 at 05:54 UTC ( [id://854835]=note: print w/replies, xml ) Need Help??


in reply to Creating multidimentional arrays dynamically

Here's a 2D example, using neat Perl syntax:
#!/usr/bin/perl use strict; use warnings; my @x; for my $i (0..3) { for my $j (0..3) { $x[$i][$j]=int rand 10; } } for my $i (0..3) { for my $j (0..3) { print $x[$i][$j]," "; } print "\n"; } exit;
Extending this to three dimensions is trivially easy, just add another set of brackets after [$j], but then printing it gets harder. Read perllol

HTH,
SSF

Replies are listed 'Best First'.
Re^2: Creating multidimentional arrays dynamically
by AnomalousMonk (Archbishop) on Aug 13, 2010 at 09:51 UTC

Log In?
Username:
Password:

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

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

    No recent polls found