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


floor

round down

Syntax

y=floor(x)

Arguments

x

a real or complex matrix

y

integer value matrix (or complex matrix with integer real and imaginary part)

Description

floor(x) returns an integer matrix made of nearest rounded down integers.

Examples

floor([1.3 1.5 1.7 2.5 3.7])
// Notice the result for x negative
floor([-1.3 -1.5 -1.7 -2.5 -3.7])
floor([2.2+%i*23, %pi*%i, -%i ])

See also

  • round — round to nearest integer
  • fix — round towards zero
  • ceil — round up
Report an issue
<< fix Floating point format >>

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:
Tue Oct 24 14:30:03 CEST 2023