Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
less
(<) より小さいの比較
greater
(>) より大きいの比較
説明
論理値比較記号
- <>
"異なる"を意味する (
~=
と同じ)- <
"より小さい"を意味する
- >
means "より大きい"を意味する
- <=
より小さいか等しいを意味する.
- >=
より大きいか等しいを意味する
例
(1:5)==3 (1:5)<=4 (1:5)<=[1 4 2 3 0] 1<[]
参照
- if — 条件付き実行
- comparison — 比較, 関係演算子
- equal — (=) 代入 , 比較, 等号
履歴
バージョン | 記述 |
6.0 | ~ (not) priority is now higher than < ,
<= , > and >= one.
For instance, ~3<1 is parsed as (~3)<1
instead of ~(3<1) and now yields an error instead of
%T .A>[] , A>=[] ,
A<[] , A<=[] ,
[]>A , []>=A ,
[]<A , and []<=A now return
[] instead of an error. |
Report an issue | ||
<< hat | Scilab keywords | minus >> |