<< hat Scilab keywords minus >>

Scilab Help >> Scilab > Scilab keywords > less

less

(<) より小さいの比較

greater

(>) より大きいの比較

説明

論理値比較記号

<>

"異なる"を意味する (~=と同じ)

<

"より小さい"を意味する

>

means "より大きい"を意味する

<=

より小さいか等しいを意味する.

>=

より大きいか等しいを意味する

(1:5)==3
(1:5)<=4
(1:5)<=[1 4 2 3 0]
1<[]

参照

履歴

VersionDescription
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 >>