Aptech Systems, Inc. Worldwide Headquarters
Mailing Address:
PO Box 250
Black Diamond, WA 98010 USAStreet Address:
30741 Third Avenue #160
Black Diamond, WA 98010 USAPhone: 360.886.7100
FAX: 360.886.8922Ready to Get Started?
For Pricing and Distribution
Industry Solutions
Products
Resources
Support
Training & Events
Want more guidance while learning about the full functionality of GAUSS and its capabilities? Get in touch for in-person training or browse additional references below.
Tutorials
Step-by-step, informative lessons for those who want to dive into GAUSS and achieve their goals, fast.
Have a Specific Question?
Get a real answer from a real person
- Need Support?
Q&A: Register and Login
Support Plans
Premier Support and Platinum Premier Support are annually renewable membership programs that provide you with important benefits including technical support, product maintenance, and substantial cost-saving features for your GAUSS System or the GAUSS Engine.
User Forums
Join our community to see why our users are considered some of the most active and helpful in the industry!
Where to Buy
Available across the globe, you can have access to GAUSS no matter where you are.
Recent Tags
applications character vectors CMLMT covariance matrix dates dlibrary dllcall ECDF Editor error handling errors floating network GAUSS Engine Geometric mean graphics GUI hardware histogram hotkeys if statements installation Java API linux localization Matlab convert matlab translation matrices matrix initialization matrix manipulation Maxlik MaxLikMT Memory output pgraph graph PQG graphics RAM random numbers RedHat 6.1 simulation string functions strings threading threads loops Time Series writing dataRecent Questions
Features
Resources
Sorting all columns in a matrix and sortmc
0
How can I sort all columns in a matrix without doing a loop? I cannot get the sortmc command to work.
1 Answer
0
The best way to sort an entire matrix is probably with a loop. You can make a procedure to hide the details to make your code cleaner, like this:
proc (1) = sortallc(x);
for i(1, cols(x), 1);
x[.,i] = sortc(x[.,i], 1);
endfor;
retp(x);
endp;
Then in your code, you would just need to say:
newx = sortallc(x);
The sortmc command keeps all rows together. Since in many cases, rows are observations this is what is most commonly needed. What it does differently is that it will sort later columns based upon tie breakers in the first specified search column. So, the code:
x = { 9 2 5 6,
3 6 1 9,
3 7 4 1,
1 2 8 9 };
s1 = sortc(x,1);
s2 = sortmc(x, 1|2);
will set ‘s1′ and ‘s2′ equal to:
1 2 8 9
s1 = 3 7 4 1
3 6 1 9
9 2 5 6
1 2 8 9
s2 = 3 6 1 9
3 7 4 1
9 2 5 6
Notice that rows 2 and 3 have been swapped in ‘s2′ because the matrix was sorted based upon row 2 for the rows that matched in column 1.

