Programmer Guide/Command Reference/EVAL/sort: Difference between revisions
From STX Wiki
< Programmer Guide | Command Reference | EVAL
Jump to navigationJump to search
m (1 revision: Initial import) |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
Sort the vector or matrix ''x''. | |||
---- | |||
;Usage: <code>'''sort(''type'', ''x'' {, ''i'' }) | |||
;''mode'': specifies the sort direction and the row or column containing the data to be sorted | |||
;''x'': vector or matrix to be sorted | |||
;''i'': row or column containing the sort data; depends ion ''type'' (default=0) | |||
;Result: The sorted vector or matrix ''x''. | |||
:{|class=einrahmen | |||
!''type'' | ''i'' | description | |||
|- | |- | ||
| | |'''0'''| column index | sort rows of ''x'' ascending by the values of column ''i'' | ||
|sort | |||
|- | |- | ||
| | |'''1'''| column index | sort rows of ''x'' descending by the values of column ''i'' | ||
|sort | |||
|- | |- | ||
| | |'''2'''| row index | sort columns of ''x'' acending by the values of row ''i'' | ||
| | |||
|- | |- | ||
| | |'''3'''| row index | sort columns of ''x'' descending by the values of row ''i'' | ||
| | |||
;See also: [[Programmer_Guide/Command_Reference/EVAL/median|median]], [[Programmer_Guide/Command_Reference/EVAL/sample|sample]], [[Programmer_Guide/Command_Reference/EVAL/shuffle|shuffle]] | |||
| | [[Programmer_Guide/Command_Reference/EVAL#Functions|<function list>]] | ||
Revision as of 09:17, 11 April 2011
Sort the vector or matrix x.
- Usage
sort(type, x {, i })
- mode
- specifies the sort direction and the row or column containing the data to be sorted
- x
- vector or matrix to be sorted
- i
- row or column containing the sort data; depends ion type (default=0)
- Result
- The sorted vector or matrix x.
i | description
column index | sort rows of x ascending by the values of column i
column index | sort rows of x descending by the values of column i
row index | sort columns of x acending by the values of row i
row index | sort columns of x descending by the values of row i