Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Português

Change language to:
English - Français - 日本語 - Русский

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

Ajuda Scilab >> Funções de Compatibilidade > mtlb_min

mtlb_min

Matlab min emulation function

Description

Matlab and Scilab min behave differently in some particular cases:

  • With complex values: Matlab min can be used with complex values but not Scilab function.

  • When called with one input: Matlab min threats values along the first non-singleton dimension but Scilab threats all input values.

  • When called with two inputs: if one is an empty matrix, Scilab returns an error message but Matlab returns [].

  • When called with three inputs: if dim parameter is greater than number of dimensions of first input, Scilab returns an error message and Matlab returns the first input.

The function [r[,k]] = mtlb_min(A[,B[,dim]]) is used by mfile2sci to replace [r[,k]] = min(A[,B[,dim]]) 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_min calls:

  • When called with one input, if A is a vector or a scalar [r[,k]] = mtlb_min(A) may be replaced by min(A)

  • When called with one input, if A is a matrix [r[,k]] = mtlb_min(A) may be replaced by min(A,"r")

  • When called with two inputs, if A and B are real matrices and not empty matrices [r[,k]] = mtlb_min(A,B) may be replaced by min(A,B)

  • When called with three inputs, if dim is lesser than the number of dimensions of A [r[,k]] = mtlb_min(A,[],dim) may be replaced by min(A,dim)

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

See Also

Report an issue
<< mtlb_max Funções de Compatibilidade mtlb_more >>

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:
Tue Apr 02 17:37:06 CEST 2013