graphinglib.FitFromLog.get_coordinates_at_x#
- FitFromLog.get_coordinates_at_x(x: float) tuple[float, float] #
Gets the coordinates of the curve at a given x value.
- Parameters:
- xfloat
The x value of the desired coordinates.
- interpolation_methodstr,
The type of interpolation to be used, as defined in
scipy.interpolate.interp1d
.See also
Defaults to “linear”.
- Returns:
- tuple[float, float]
The coordinates of the curve at the given x value.