cc [ flag... ] file... –lmlib [ library... ]
#include <mlib.h>
mlib_status mlib_VectorNorm_U8_Sat(mlib_d64 *z, const mlib_u8 *x,
mlib_s32 n);
mlib_status mlib_VectorNorm_S8_Sat(mlib_d64 *z, const mlib_s8 *x,
mlib_s32 n);
mlib_status mlib_VectorNorm_S16_Sat(mlib_d64 *z, const mlib_s16 *x,
mlib_s32 n);
mlib_status mlib_VectorNorm_S32_Sat(mlib_d64 *z, const mlib_s32 *x,
mlib_s32 n);
Each of these functions computes the vector normal.
The following equation is used:
n-1
z[0] = ( SUM x[i]**2 )**0.5
i=0
Each of the functions takes the following arguments:
Pointer to the norm of the vector.
Pointer to the first element of the source vector.
Number of elements in the vectors.
Each of the functions returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE.
See attributes(5) for descriptions of the following attributes:
|