Sorting an NArray

M

mekondelta

I have a 2 dimensional array using NArray and wish to sort the values based
on the values in column zero or row zero.

How can I achieve this using NArray? I can't even seem to get the basic sort
working:-

matrix.sort(0)

gives me a "..blah..:in `sort': undefined method `<=>' for nil:NilClass
(NoMethodError)"

I know I can supply a block to the sort method but the documentation, such
that it is at:-

http://narray.rubyforge.org/SPEC.en

isn't that informative and implies that the above line should work?

Any ideas greatly appreciated.

Cheers, Chris.
 
A

ara.t.howard

I have a 2 dimensional array using NArray and wish to sort the values based
on the values in column zero or row zero.

How can I achieve this using NArray? I can't even seem to get the basic sort
working:-

matrix.sort(0)

gives me a "..blah..:in `sort': undefined method `<=>' for nil:NilClass
(NoMethodError)"

I know I can supply a block to the sort method but the documentation, such
that it is at:-

http://narray.rubyforge.org/SPEC.en

isn't that informative and implies that the above line should work?

Any ideas greatly appreciated.

Cheers, Chris.

harp:~ > ruby -r narray -e' p NArray.to_na([ [5,4,3], [2,1,0] ]) '
NArray.int(3,2):
[ [ 5, 4, 3 ],
[ 2, 1, 0 ] ]

harp:~ > ruby -r narray -e' p NArray.to_na([ [5,4,3], [2,1,0] ]).shape '
[3, 2]

harp:~ > ruby -r narray -e' p NArray.to_na([ [5,4,3], [2,1,0] ]).sort '
NArray.int(3,2):
[ [ 0, 1, 2 ],
[ 3, 4, 5 ] ]

#
# sort the 0th thru 0th dims
#
harp:~ > ruby -r narray -e' p NArray.to_na([ [5,4,3], [2,1,0] ]).sort(0) '
NArray.int(3,2):
[ [ 3, 4, 5 ],
[ 0, 1, 2 ] ]

#
# sort the 0th thru 1st dims
#
harp:~ > ruby -r narray -e' p NArray.to_na([ [5,4,3], [2,1,0] ]).sort(1) '
NArray.int(3,2):
[ [ 0, 1, 2 ],
[ 3, 4, 5 ] ]

-a
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top