Re: simplest way to sort a bi-dimensional array? mat(a,b)...
- From: ginko <ginko@xxxxxxxxxxx>
- Date: Thu, 26 Jul 2007 18:23:17 +0200
Let's take a simple example :
Suppose you have the following initial matrix; 4 rows 3 columns
row(1) 12 10 7
row(2) 4 8 11
row(3) 9 5 2
row(4) 1 3 6
After the sort what do you expect to see ?
(a) Sorted ascending in both column and row
row(1) 1 2 3
row(2) 4 5 6
row(3) 7 8 9
row(4) 10 11 12
this one!!!
.
- Follow-Ups:
- References:
- Prev by Date: Re: simplest way to sort a bi-dimensional array? mat(a,b)...
- Next by Date: Re: How to call a Java program from Fortran?
- Previous by thread: Re: simplest way to sort a bi-dimensional array? mat(a,b)...
- Next by thread: Re: simplest way to sort a bi-dimensional array? mat(a,b)...
- Index(es):