Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - English


mtlb_sort

Matlab sort emulation function

Syntax

P = mtlb_sort(X)
P = mtlb_sort(X,dim[,mode])

Arguments

X

a scalar, vector, matrix of reals, booleans or a string

dim

a positive scalar integer

mode

a string ("ascend" or "descend")

Description

Matlab sort and Scilab gsort behave differently in some particular cases:

  • For a vector X the Matlab sort(X,'g','i') function call is equivalent to the Scilab gsort(X) function call.

  • The value 1 (resp. 2) of the Matlab dim is equivalent to the Scilab "r" flag (resp. "c").

  • The Matlab "ascend" (resp. "descend") mode is equivalent to the Scilab "i" (resp. "d") flag.

The function mtlb_sort(X[,dim[,mode]]) is used by mfile2sci to replace sort(X[,dim[,mode]]) when it was not possible to know what were the inputs while porting Matlab code to Scilab. This function will determine the correct semantic at run time. If you want to have a more efficient code it is possible to replace mtlb_sort call by gsort call.

Caution: mtlb_sort has not to be used for hand coded functions.

Report an issue
<< mtlb_size Compatible fonctions mtlb_strcmp >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Mar 27 11:52:51 GMT 2023