MathUtil

public final class MathUtil

Properties

Link copied to clipboard
private final static Angle deg

Creates an Angle from the specified value in degrees.

Link copied to clipboard
public final static Double EPSILON

The accuracy with which epsilonEquals operates : 0.000001.

Link copied to clipboard
private final static Angle rad

Creates an Angle from the specified value in radians.

Functions

Link copied to clipboard
public final static Angle abs(Angle angle)
Link copied to clipboard
public final static Double clamp(Double n, Double min, Double max)

Ensures that n lies in the range min..max.

Link copied to clipboard
public final static Double cos(Angle angle)
Link copied to clipboard
public final static Pair<Double, Double> doLinearRegression(List<Double> x, List<Double> y)

Does a linear regression of the form y = mx + b.

Link copied to clipboard

Does a linear regression of the form y = mx.

Link copied to clipboard
public final static Boolean epsilonEquals(Double $self, Double other)

Returns whether two doubles are approximately equal (within EPSILON).

Link copied to clipboard
public final static Double evaluatePolynomial(DoubleArray polynomial, Double x)

Evaluates polynomial at x.

Link copied to clipboard
public final static Array<IntArray> generatePascalsTriangle(Integer n)

Generates n rows of Pascal's triangle.

Link copied to clipboard
public final Angle getDeg()
Link copied to clipboard
public final Angle getRad()
Link copied to clipboard
public final static List<ClosedFloatingPointRange<Double>> isolateRoots(DoubleArray polynomial, Array<IntArray> pascalsTriangle)

Returns a list of intervals that each contain a root of polynomial that lies in 0, 1. Uses the Modified Uspensky algorithm described here.

Link copied to clipboard
public final static Angle max(Angle a, Angle b)
Link copied to clipboard
public final static Angle min(Angle a, Angle b)
Link copied to clipboard
public final static Double sign(Angle angle)
Link copied to clipboard
public final static Double sin(Angle angle)
Link copied to clipboard
public final static List<Double> solveQuadratic(Double a, Double b, Double c)

Returns the real solutions to the quadratic \(ax^2 + bx + c\).

Link copied to clipboard
public final static Double tan(Angle angle)
Link copied to clipboard
public final static Angle times(Double $self, Angle angle)

Multiplies angle by the provided scalar.

public final static Pose2d times(Double $self, Pose2d pose)

Multiplies pose by the provided scalar.

public final static Vector2d times(Double $self, Vector2d vector)

Multiplies vector by the provided scalar.

Link copied to clipboard
public final static Double wrap(Double n, Double min, Double max)

Ensures that n lies in the range min..max, where min and max are modularly-equivalent (that is, n wraps around).

public final static Integer wrap(Integer n, Integer min, Integer max)

Ensures that n lies in the range min..max, where min and max are modularly-equivalent (that is, n wraps around).