Generates the Scilab pseudo-code representing an operation
op = Operation(operator, operands, out)
operator
,
operands
, and out
.
"''", ".''", "~", ":",
"+", "-", "*", ".*", ".*.", ".^", "/", "./", "\",
"==", "<>", "<", "<=", ">", ">=", "|", "||", "&", "&&",
"cc"
(Columns horizontal Concatenation [,]), "rc"
(Rows vertical concatenation [;]),
"ccc"
(Cells horizontal concatenation {,}),
"crc"
(Cells vertical concatenation {;}),
"ins"
(insertion), "ext"
(extraction).
This function creates a tlist
representing an operation when using
M2SCI. All input parameters values are verified to be compatible with "M2SCI tlists".
Version | Description |
6.1.1 | out is now optional: default = list(). |