Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - 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 > less

less

(<) less than comparison

greater

(>) greater than comparison

Description

logical comparison symbol

<>

means "different" (same as ~=)

<

means "less than"

>

means "greater than"

<=

means less than or equal to.

>=

means greater than or equal to

Examples

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

See also

  • if — keyword for conditional execution
  • comparison — comparison, relational operators
  • equal — (=) assignment , comparison, equal sign

History

VersionDescription
6.0
  • ~ (not)'s 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 >>

    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:
    Thu Feb 14 14:57:05 CET 2019