Visible to Intel only — GUID: GUID-647EE920-FC86-4C90-8A7F-DBDADDF600AB
Visible to Intel only — GUID: GUID-647EE920-FC86-4C90-8A7F-DBDADDF600AB
MulPackConj
Multiplies elements of a vector by the elements of a complex conjugate vector stored in Pack format.
Syntax
IppStatus ippsMulPackConj_32f_I(const Ipp32f* pSrc, Ipp32f* pSrcDst, int len);
IppStatus ippsMulPackConj_64f_I(const Ipp64f* pSrc, Ipp64f* pSrcDst, int len);
Include Files
ipps.h
Domain Dependencies
Headers: ippcore.h, ippvm.h
Libraries: ippcore.lib, ippvm.lib
Parameters
pSrc |
Pointer to the first source vector. |
pSrcDst |
Pointer to the second source and destination vector. |
len |
Number of elements in the vector. |
Description
This function multiplies the elements of a source vector pSrc by elements of the vector that is complex conjugate to the source vector pSrcDst and stores the results in pSrcDst. The function performs only in-place operations on data stored in Pack format.
Return Values
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error when the pSrc or pSrcDst pointer is NULL. |
ippStsSizeErr |
Indicates an error when len is less than or equal to 0. |