On Thu, Jan 31, 2013 at 11:34 AM, Joel Pearson <[email protected]> wrote: > Praise Jesus! > > My initial output was the desired one, but the "transpose" method is > what I was missing. Thanks :)
I'd really start by creating a class for this - or use Matrix from the standard library. irb(main):008:0> m = Matrix[[1,2,3],[4,5,6]] => Matrix[[1, 2, 3], [4, 5, 6]] irb(main):009:0> m.row 1 => Vector[4, 5, 6] irb(main):010:0> m.column 1 => Vector[2, 5] Kind regards robert -- remember.guy do |as, often| as.you_can - without end http://blog.rubybestpractices.com/ -- [email protected] | https://groups.google.com/d/forum/ruby-talk-google?hl=en --- You received this message because you are subscribed to the Google Groups "ruby-talk-google" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
