RelaxISWCFLinkProxyGetPlotDataNewFreqs Method |
Returns data that can be used to generate a plot for the given circuit.
Namespace: RelaxIS_SDK.RelaxISWCFLinkAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public double[][] GetPlotDataNewFreqs(
string Circuit,
double[] ParameterValues,
string TransferFunction,
double MinimumFrequency,
double MaximumFrequency,
int NPoints
)
Public Function GetPlotDataNewFreqs (
Circuit As String,
ParameterValues As Double(),
TransferFunction As String,
MinimumFrequency As Double,
MaximumFrequency As Double,
NPoints As Integer
) As Double()()
Dim instance As RelaxISWCFLinkProxy
Dim Circuit As String
Dim ParameterValues As Double()
Dim TransferFunction As String
Dim MinimumFrequency As Double
Dim MaximumFrequency As Double
Dim NPoints As Integer
Dim returnValue As Double()()
returnValue = instance.GetPlotDataNewFreqs(Circuit,
ParameterValues, TransferFunction,
MinimumFrequency, MaximumFrequency,
NPoints)
Parameters
- Circuit String
- The equivalent circuit to evaluate.
- ParameterValues Double
- The parameter values for each value of the circuit.
- TransferFunction String
- The transfer function name to use. Refer to the Plugins section in the RelaxIS options to find the name, e.g. "Impedance"
- MinimumFrequency Double
- The lower frequency limit for the data range.
- MaximumFrequency Double
- The upper frequency limit for the data range.
- NPoints Int32
- The number of data points to generate in the given range.
Return Value
DoubleAn array were Return(0) contains the list of frequencies, Return(1) contains the real parts and Return(2) returns the imaginary parts.
Implements
IRelaxISWCFLinkGetPlotDataNewFreqs(String, Double, String, Double, Double, Int32)Remarks The data points will be logarithmically spaces in the given data range.
See Also