Main Content

地面

Round toward negative infinity

Description

example

Y = floor(X)圆形的s each element ofXto the nearest integer less than or equal to that element.

example

Y = floor(t)圆形的s each element of theduration大批tto the nearest number of seconds less than or equal to that element.

example

Y = floor(t,unit)圆形的s each element oftto the nearest number of the specified unit of time less than or equal to that element.

Examples

collapse all

X = [-1.9 -0.2 3.4; 5.6 7.0 2.4+3.6i]; Y = floor(X)
Y =2×3 complex-2.0000 + 0.0000i -1.0000 + 0.0000i 3.0000 + 0.0000i 5.0000 + 0.0000i 7.0000 + 0.0000i 2.0000 + 3.0000i

Round each value in aduration大批to the nearest number of seconds less than or equal to that value.

t = hours(8) + minutes(29:31) + seconds(1.23); t.Format ='hh:mm:ss.SS'
t =1x3 duration08:29:01.23 08:30:01.23 08:31:01.23
Y1 = floor(t)
Y1 =1x3 duration08:29:01.00 08:30:01.00 08:31:01.00

Round each value int到最接近的小时数小于或等于该值。

Y2 = floor(t,'hours')
Y2 =1x3 duration08:00:00.00 08:00:00.00 08:00:00.00

Input Arguments

collapse all

Input array, specified as a scalar, vector, matrix, or multidimensional array. For complexX,地面独立对待真实和虚构的部分。

地面converts logical andcharelements ofXintodoublevalues.

Data Types:single|double|int8|int16|int32|int64|uint8|uint16|uint32|uint64|char|logical
Complex Number Support:Yes

Input duration, specified as aduration大批.

Unit of time, specified as“秒”,'minutes','hours','days', or'years'. A duration of 1 year is equal to exactly 365.2425 24-hour days.

Extended Capabilities

Version History

Introduced before R2006a