FftMultiplyConjugated Method

CVB.Net Documentation
Multiply a compressed FFT image with the complex conjugate of another compressed FFT image.

Namespace:  Stemmer.Cvb.Foundation
Assembly:  Stemmer.Cvb.Foundation (in Stemmer.Cvb.Foundation.dll) Version: 14.0.0.0
Syntax

public static FftImage MultiplyConjugated(
	FftImage img1,
	FftImage img2
)

Parameters

img1
Type: Stemmer.Cvb.FoundationFftImage
Image 1 to multiply
img2
Type: Stemmer.Cvb.FoundationFftImage
Image 2 to multiply

Return Value

Type: FftImage
Multiplication result
Exceptions

ExceptionCondition
ObjectDisposedExceptionIf the input img1 has already been disposed
ArgumentNullExceptionIf the input img2 is null
ObjectDisposedExceptionIf the input img2 has already been disposed
Remarks

Note: the complex conjugate of img2 will be taken before multiplying.
See Also

Reference