Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Русский

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 >> Функции для совместимости > mtlb_i

mtlb_i

Matlab insertion emulation function

Description

Matlab and Scilab insertion behave differently in some particular cases:

  • When inserting a matrix in a variable: Matlab automatically adjusts output variable to fit with matrix to insert but not Scilab. For example, with A=1, A([1,2,3,4])=[1,2;3,4]) returns an error in Scilab while in Matlab we get A=[1,2,3,4]. If values miss comparing to indexes, Matlab fills output value with 0.

  • When inserting data into a character string matrix: due to the fact that character string matrices in Matlab can be addressed as any other matrix (each character can be addressed), insertion in such a type of matrix does not differ from other. But in Scilab it can't be done so...mtlb_is is an alternative.

The function A=mtlb_i(A,k,B) is used by mfile2sci to replace A(k)=B when it was not possible to know what were the operands 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_i calls:

  • If A is not a vector A=mtlb_i(A,k,B) may be replaced by A(k)=B

  • If A and B are both row or column vectors A=mtlb_i(A,k,B) may be replaced by A(k)=B

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

See also

Report an issue
<< mtlb_hold Функции для совместимости mtlb_ifft >>

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 Feb 14 15:13:37 CET 2017