matlab (version 1.0.2)

ceil: MATLAB ceil function

Description

Rounds to the nearest integer.

Usage

ceil(x)

Arguments

x
numeric to be rounded

Value

Returns numeric vector containing smallest integers not less than the corresponding elements of argument x.

Details

Simply invokes ceiling for those more used to C library API name.

See Also

fix, Round

Examples

Run this code
ceil(c(0.9, 1.3, 2.4))

Run the code above in your browser using DataLab