![]() |
IPSDK
4_1_0_2
IPSDK : Image Processing Software Development Kit
|
ceil function; returns the ceil of input value, ie. the smallest integral value not less than input value More...
#include <IPSDKUtil/IPSDKUtilExports.h>#include <IPSDKUtil/InstructionSet/Arithmetic/detail/CeilPack.h>#include <IPSDKUtil/InstructionSet/IS2Pack.h>#include <IPSDKUtil/Tools/ForceInline.h>Go to the source code of this file.
Namespaces | |
| ipsdk | |
| Main namespace for IPSDK library. | |
| ipsdk::simd | |
| Namespace agregating IPSDK SIMD routines and classes. | |
ceil function; returns the ceil of input value, ie. the smallest integral value not less than input value
given a pack P, with P = {p1, ..., pn}, ceil(P) returns R, with R ={ ceil(p1), ..., ceil(pn)}
ex.: ceil(P) = R, with P = {1.2, 1.5, 1.9, -3.2, -3.5, -3.8, 0.0, 10.0} and R = {1, 1, 1, -4, -4, -4, 0, 10}
1.8.14