Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Compatibility Functions > mtlb_sort

mtlb_sort

Matlab sort emulation function

Calling Sequence

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 Compatibility Functions 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:
Wed Apr 01 10:25:14 CEST 2015