Natural Logarithm | |
enum YepStatus | yepMath_Log_V64f_V64f (const Yep64f *restrict numberPointer, Yep64f *restrict logNumberPointer, YepSize length) |
Computes vector logarithm of double-precision (64-bit) floating-point elements in the input array, producing an array of double-precision (64-bit) floating-point elements in the output array. | |
enum YepStatus yepMath_Log_V64f_V64f | ( | const Yep64f *restrict | numberPointer, |
Yep64f *restrict | logNumberPointer, | ||
YepSize | length | ||
) |
Computes vector logarithm of double-precision (64-bit) floating-point elements in the input array, producing an array of double-precision (64-bit) floating-point elements in the output array.
[in] | numberPointer | Pointer the input array of double-precision (64-bit) floating-point elements to compute logarithms on. |
[out] | logNumberPointer | Pointer the output array of double-precision (64-bit) floating-point elements to store the logarithm values. |
[in] | length | The length of the arrays pointed by numberPointer and logNumberPointer. |
YepStatusOk | The computations finished successfully. |
YepStatusNullPointer | One of the numberPointer or logNumberPointer arguments is null. |
YepStatusMisalignedPointer | One of the numberPointer or logNumberPointer arguments is not properly aligned. |