PhaseToolsUnwrapT(Double, T, Double, Boolean) Method
Unwrap Phase (phase should start at DC between +90 deg and -270 deg for a negative slope or -90 deg and +270 deg for a positive slope)
Namespace: Metas.Vna.DataAssembly: Metas.Vna.Data (in Metas.Vna.Data.dll) Version: 2.8.9053.20259
public static T[] Unwrap<T>(
double[] freq,
T[] phase,
double fc = 0,
bool auto_fc = false
)
where T : new(), Object, IRealNumber<T>
Public Shared Function Unwrap(Of T As {New, Object, IRealNumber(Of T)}) (
freq As Double(),
phase As T(),
Optional fc As Double = 0,
Optional auto_fc As Boolean = false
) As T()
public:
generic<typename T>
where T : gcnew(), Object, IRealNumber<T>
static array<T>^ Unwrap(
array<double>^ freq,
array<T>^ phase,
double fc = 0,
bool auto_fc = false
)
static member Unwrap :
freq : float[] *
phase : 'T[] *
?fc : float *
?auto_fc : bool
(* Defaults:
let _fc = defaultArg fc 0
let _auto_fc = defaultArg auto_fc false
*)
-> 'T[] when 'T : new() and Object and IRealNumber<'T>
- freq Double
- Frequency / Hz
- phase T
- Phase / rad
- fc Double (Optional)
- Cutoff Frequency / Hz. For a coaxial line or free space, set cutoff frequency to 0 Hz.
- auto_fc Boolean (Optional)
- Automatic Cutoff Frequency
- T
- Real Number Type
T