[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Matrices, Gtk et al

Robert Love

3/23/2006 4:33:00 AM


I have something working but it sure seems clumsy and I'm hoping for
pointers to make it better. My app is a ruby & Gtk thing to do some
calculations. I want to have a standard 3x3 matrix of floating point
numbers as well some 3x1 vectors. I'm using a 9 element array today for
the 3x3. I also have a series of 9 Gtk.Entry fields that is even more
clumsy than the floating point numbers.

How do I build a function that, when called by the Calc button callback,
fetches the contents of the 9 numbers and returns it as a 3x3 matrix?
From what I've read, ruby doesn't have real two dimensional arrays. So
am I stuck doing everything in a manner that doesn't map well to my math
problem domain?

All advice appreciated.
3 Answers

Justin Collins

3/23/2006 10:18:00 PM

0

Robert Love wrote:
> I have something working but it sure seems clumsy and I'm hoping for
> pointers to make it better. My app is a ruby & Gtk thing to do some
> calculations. I want to have a standard 3x3 matrix of floating point
> numbers as well some 3x1 vectors. I'm using a 9 element array today for
> the 3x3. I also have a series of 9 Gtk.Entry fields that is even more
> clumsy than the floating point numbers.
>
> How do I build a function that, when called by the Calc button callback,
> fetches the contents of the 9 numbers and returns it as a 3x3 matrix?
> From what I've read, ruby doesn't have real two dimensional arrays. So
> am I stuck doing everything in a manner that doesn't map well to my math
> problem domain?
>
> All advice appreciated

Try checking out the Matrix standard library:

http://ruby-doc.org/stdlib/libdoc/matrix/rdoc/...

-Justin



Robert Love

3/24/2006 4:09:00 AM

0

In <44231E6E.3000807@seattleu.edu> Justin Collins wrote:
> Robert Love wrote:
>> I have something working but it sure seems clumsy and I'm hoping for
>> pointers to make it better. My app is a ruby & Gtk thing to do some
>> calculations. I want to have a standard 3x3 matrix of floating point
>> numbers as well some 3x1 vectors. I'm using a 9 element array today
>> for the 3x3. I also have a series of 9 Gtk.Entry fields that is
>> even more clumsy than the floating point numbers.
>>
>> How do I build a function that, when called by the Calc button
>> callback, fetches the contents of the 9 numbers and returns it as a
>> 3x3 matrix? From what I've read, ruby doesn't have real two
>> dimensional arrays. So am I stuck doing everything in a manner that
>> doesn't map well to my math problem domain?
>>
>> All advice appreciated
>
> Try checking out the Matrix standard library:
>
> http://ruby-doc.org/stdlib/libdoc/matrix/rdoc/...
>

Thanks, I will look at. I assume that it is for floating numbers only?
I can't have a 3x3 matrix of Gtk.Entry fields so a user can input this?

matthew.moss.coder

3/24/2006 4:52:00 AM

0

> How do I build a function that, when called by the Calc button callback,
> fetches the contents of the 9 numbers and returns it as a 3x3 matrix?
> From what I've read, ruby doesn't have real two dimensional arrays. So
> am I stuck doing everything in a manner that doesn't map well to my math
> problem domain?

You can do 2d arrays in Ruby as an array of arrays. (Very much like
many other languages.)

There's also the enumerator module that can help build a 3x3 array out
of a 9-element sequence. In irb:

> require 'enumerator'
=> true

> a = (1..9).to_a
=> [1, 2, 3, 4, 5, 6, 7, 8, 9]

> b = []
=> []

> a.each_slice(3) { |x| b << x }
=> nil

> b
=> [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

> b[1][2]
=> 6



You can use Matrix to store things other than Float, but most of the
methods on Matrix only work with and are intended for Float. So
putting things other than Float into Matrix turns it into an array of
arrays; might as well skip Matrix.