- Aide de Scilab
- Scilab
- Mots clés Scilab
- ans
- backslash
- brackets ([,])
- colon
- comma
- comments
- dot (.)
- else
- elseif
- empty ([])
- end
- extraction
- global
- hat (^)
- insertion
- left ([)
- minus (-)
- not (~)
- parentheses ( )
- percent (%)
- plus (+)
- power
- quote (')
- semicolon
- slash (/)
- star (*)
- symbols
- tilde
- try
- comparison
- dollar
- equal
- less
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
equal
(=) assignment , comparison, equal sign
Description
- Assignment:
The equal sign
=
is used to denote the assignment of value(s) to variable(s). The syntax can be :a=expr
wherea
is a variable name andexpr
a scilab expression which evaluates to a single result;[a,b,...]=expr
wherea
,b
,...
are variable names andexpr
a scilab expression which results in as many results as given variable names.
- Comparison:
The equal sign
=
is also used in the comparison operators:a==b
denotes equality comparison between the values of the expressionsa
andb
;a~=b
denotes inequality comparison between the values of the expressionsa
andb
;a<=b
anda>=b
denote ordering comparison between the values of the expressionsa
andb
.
See comparison for semantic details.
Examples
See Also
- less — (<) less than comparison
- greater
- boolean — Objets Scilab, variables booléennes et opérateurs & | ~
- isequal — objects comparison
- comparison — comparison, relational operators
Report an issue | ||
<< dollar | Mots clés Scilab | less >> |