Method StridedToComplex
View SourceStridedToComplex(Single[], Int32, Int32, Complex32[], Int32, Int32)
Unpacks complex values from the array of floats.
Declaration
public static void StridedToComplex(float[] source, int srcOffset, int srcStride, Complex32[] destination, int dstOffset, int complexCount)
Parameters
Type | Name | Description |
---|---|---|
Single[] | source | The source array. |
Int32 | srcOffset | The offset to the first value in the source array. |
Int32 | srcStride | The stride in the source array. |
MathNet.Numerics.Complex32[] | destination | The destination array. |
Int32 | dstOffset | The offset to the first value in the destination array. |
Int32 | complexCount | The number of the complex values to output. |
StridedToComplex(Single[], Int32, Int32, Single[], Int32, Int32)
Convert data format.
Declaration
public static void StridedToComplex(float[] source, int srcOffset, int srcStride, float[] destination, int dstOffset, int complexCount)
Parameters
Type | Name | Description |
---|---|---|
Single[] | source | The source array. |
Int32 | srcOffset | The offset to the first value in the source array. |
Int32 | srcStride | The stride in the source array. |
Single[] | destination | The destination array. |
Int32 | dstOffset | The offset to the first value in the destination array. |
Int32 | complexCount | The number of the complex values to output. |