sqrt
Return a tensor spline approximation to the square root of the spline output.
Declaration
splinesqrt = sqrt(self)
Parameters
selfTensorSpline instance
Returns
splinesqrtTensorSpline approximating sqrt(spline)
Discussion
This is a convenience wrapper around spline.^(1/2) and is most useful when the spline is nonnegative over its domain.
amplitudeSpline = sqrt(energySpline);