floor
- Updated2023-02-21
- 1 minute(s) read
floor
double floor (double inputValue);
Purpose
Computes the largest integer value not greater than the specified argument. This function rounds the input value down to the next lowest integer and returns the result.
Parameters
Input | ||
Name | Type | Description |
inputValue | double | Contains the value that will be rounded down to the next lowest integer. |
Return Value
Name | Type | Description |
result | double | Contains the resulting integer floor value. This value is the largest integer value that is not greater than inputValue. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later