sqrt

Return a tensor spline approximation to the square root of the spline output.


Declaration

 splinesqrt = sqrt(self)

Parameters

  • self TensorSpline instance

Returns

  • splinesqrt TensorSpline 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);