ScriptTSplineInterpolation(String, Double, String, SplineBoundary, ComplexT, SplineBoundary, ComplexT) Method
            Spline Interpolation
            
Namespace: Metas.Vna.ToolsAssembly: Metas.Vna.Tools (in Metas.Vna.Tools.exe) Version: 2.9.9393.15262
public void SplineInterpolation(
	string pathA,
	double[] freq,
	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,
	freq As Double(),
	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, 
	array<double>^ freq, 
	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 * 
        freq : float[] * 
        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 (*.sdatb)
- freq  Double
- 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