Click or drag to resize

FloatDWTReconstruct(Int32) Method

Reconstruct signal with the inverse DWT to level N. A wavelet decomposition to at least level N must be first completed.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public float[] Reconstruct(
	int N
)

Parameters

N  Int32
The level at which to reconstruct the signal.

Return Value

Single
The reconstructed approximate signal at level N.
Exceptions
ExceptionCondition
NMathExceptionA signal decomposition must be completed before a signal reconstruction can be done.
InvalidArgumentException"The reconstruction level, N, must be less than or equal to the maximum signal decomposition completed."
InvalidArgumentException"The reconstruction level, N, must be 1 or greater."
Remarks
Similar to MATLAB's waverec function.
See Also