Constructs a FFTException instance when MKL experiences an internal error

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FFTKernelException(
	string s,
	int errorcode,
	int dimension,
	int length,
	FFTPrecision precision,
	FFTDomain domain
)
Visual Basic (Declaration)
Public Sub New ( _
	s As String, _
	errorcode As Integer, _
	dimension As Integer, _
	length As Integer, _
	precision As FFTPrecision, _
	domain As FFTDomain _
)
Visual C++
public:
FFTKernelException(
	String^ s, 
	int errorcode, 
	int dimension, 
	int length, 
	FFTPrecision precision, 
	FFTDomain domain
)

Parameters

s
Type: System..::.String
The exception message.
errorcode
Type: System..::.Int32
FFT kernel error code.
dimension
Type: System..::.Int32
Dimension of FFT.
length
Type: System..::.Int32
Length of FFT.
precision
Type: CenterSpace.NMath.Core..::.FFTPrecision
Precision of FFT calculation.
domain
Type: CenterSpace.NMath.Core..::.FFTDomain
Forward domain of FFT.

See Also