ScriptTSplineInterpolation(String, String, String, SplineBoundary, ComplexT, SplineBoundary, ComplexT) Method
Spline Interpolation
Namespace: Metas.Vna.ToolsAssembly: Metas.Vna.Tools (in Metas.Vna.Tools.exe) Version: 2.8.9053.20314
public void SplineInterpolation(
string pathA,
string pathB,
string pathRes,
SplineBoundary startBoundary = SplineBoundary.Natural_Spline,
Complex<T> startDerivativeValue = default,
SplineBoundary endBoundary = SplineBoundary.Natural_Spline,
Complex<T> endDerivativeValue = default
)
Public Sub SplineInterpolation (
pathA As String,
pathB As String,
pathRes As String,
Optional startBoundary As SplineBoundary = SplineBoundary.Natural_Spline,
Optional startDerivativeValue As Complex(Of T) = Nothing,
Optional endBoundary As SplineBoundary = SplineBoundary.Natural_Spline,
Optional endDerivativeValue As Complex(Of T) = Nothing
)
public:
void SplineInterpolation(
String^ pathA,
String^ pathB,
String^ pathRes,
SplineBoundary startBoundary = SplineBoundary::Natural_Spline,
Complex<T> startDerivativeValue = Complex<T>(),
SplineBoundary endBoundary = SplineBoundary::Natural_Spline,
Complex<T> endDerivativeValue = Complex<T>()
)
member SplineInterpolation :
pathA : string *
pathB : string *
pathRes : string *
?startBoundary : SplineBoundary *
?startDerivativeValue : Complex<'T> *
?endBoundary : SplineBoundary *
?endDerivativeValue : Complex<'T>
(* Defaults:
let _startBoundary = defaultArg startBoundary SplineBoundary.Natural_Spline
let _startDerivativeValue = defaultArg startDerivativeValue new Complex<'T>()
let _endBoundary = defaultArg endBoundary SplineBoundary.Natural_Spline
let _endDerivativeValue = defaultArg endDerivativeValue new Complex<'T>()
*)
-> unit
Parameters
- pathA String
- N-Port A File Path
- pathB String
- Frequency List
- pathRes String
- Result File Path (*.sdatb)
- startBoundary SplineBoundary (Optional)
- Start Boundary
- startDerivativeValue ComplexT (Optional)
- Start Derivative Value
- endBoundary SplineBoundary (Optional)
- End Boundary
- endDerivativeValue ComplexT (Optional)
- End Derivative Value