Student[NumericalAnalysis]
DataPoints
return the data points from a POLYINTERP structure
Calling Sequence
Parameters
Description
Examples
DataPoints(p)
p
-
a POLYINTERP structure
The DataPoints command retrieves the interpolated data points from a POLYINTERP structure.
The POLYINTERP structure is created using the PolynomialInterpolation command or the CubicSpline command.
with⁡StudentNumericalAnalysis:
xy≔0,1,12,1,1,1110,32,34,2,78,52,910,3,1110,72,1
p1≔PolynomialInterpolation⁡xy,independentvar=x,method=lagrange:
DataPoints⁡p1
0,1,12,1,1,1110,32,34,2,78,52,910,3,1110,72,1
p2≔CubicSpline⁡xy,independentvar=x:
DataPoints⁡p2
See Also
Student[NumericalAnalysis][AddPoint]
Student[NumericalAnalysis][BasisFunctions]
Student[NumericalAnalysis][ComputationOverview]
Student[NumericalAnalysis][CubicSpline]
Student[NumericalAnalysis][Draw]
Student[NumericalAnalysis][InterpolantRemainderTerm]
Student[NumericalAnalysis][PolynomialInterpolation]
Download Help Document