Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - English

Change language to:
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 Help >> Scilab > Scilab keywords > equal

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 where a is a variable name and expr a scilab expression which evaluates to a single result;

  • [a,b,...]=expr where a,b,... are variable names and expr 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 expressions a and b;

  • a~=b denotes inequality comparison between the values of the expressions a and b;

  • a<=b and a>=b denote ordering comparison between the values of the expressions a and b.

See comparison for semantic details.

Examples

a = sin(3.2)
M = [2.1,3.3,8.5;7.6,6.7,6.9;0,6.3,8.8];
[u,s] = schur(M)
2*2 == 4
[1:10] == 4
"foo" == "bar"
sparse([1,2;4,5;3,10],[1,2,3]) == sparse([1,2;4,5;3,10],[1,2,3])
1~=2

See also

  • less — (<) less than comparison
  • greater
  • boolean — Scilab Objects, boolean variables and operators & | ~
  • isequal — comparison of objects
  • comparison — comparison, relational operators
Report an issue
<< dot Scilab keywords extraction >>

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:
Mon Feb 12 19:26:46 CET 2018