Uses of Class
org.episteme.core.mathematics.algebra.intervals.FieldIntervalND
Packages that use FieldIntervalND
-
Uses of FieldIntervalND in org.episteme.core.mathematics.algebra.intervals
Methods in org.episteme.core.mathematics.algebra.intervals that return FieldIntervalNDModifier and TypeMethodDescriptionstatic FieldIntervalND<Real> RealInterval.closed(double min, double max) Creates a closed 1D interval [min, max] from doubles.static FieldIntervalND<Real> Creates a closed 1D interval [min, max] over Real numbers.static FieldIntervalND<Real> Creates an N-dimensional closed interval over Real numbers.static FieldIntervalND<Real> RealInterval.closedOpen(double min, double max) Creates a half-open 1D interval [min, max) from doubles.static FieldIntervalND<Real> RealInterval.closedOpen(Real min, Real max) Creates a half-open 1D interval [min, max) over Real numbers.IntervalND.getBacking()Gets the backing FieldIntervalND.static FieldIntervalND<Real> ComplexInterval.mandelbrotRegion()Creates the standard Mandelbrot viewing region [-2.5, 1] × [-1.5, 1.5]i.static FieldIntervalND<Real> Creates a 1D interval with specified endpoint types.static FieldIntervalND<Real> Creates an N-dimensional interval with specified endpoint types.static FieldIntervalND<Real> RealInterval.open(double min, double max) Creates an open 1D interval (min, max) from doubles.static FieldIntervalND<Real> Creates an open 1D interval (min, max) over Real numbers.static FieldIntervalND<Real> RealInterval.openClosed(double min, double max) Creates a half-open 1D interval (min, max] from doubles.static FieldIntervalND<Real> RealInterval.openClosed(Real min, Real max) Creates a half-open 1D interval (min, max] over Real numbers.static FieldIntervalND<Real> ComplexInterval.rectangle(double realMin, double realMax, double imagMin, double imagMax) Creates a rectangular region from double values.static FieldIntervalND<Real> Creates a rectangular region in the complex plane.static FieldIntervalND<Real> ComplexInterval.square(double halfWidth) Creates a square region centered at origin with given half-width.static FieldIntervalND<Real> Creates a square region centered at a complex number.static FieldIntervalND<Real> Creates a translated region.static FieldIntervalND<Real> ComplexInterval.unitSquare()Creates the unit square [0, 1] × [0, 1]i.static FieldIntervalND<Real> Creates a zoomed-in region centered at the same point.Constructors in org.episteme.core.mathematics.algebra.intervals with parameters of type FieldIntervalNDModifierConstructorDescriptionIntervalND(FieldIntervalND<Real> backing) Creates an N-dimensional interval from a backing FieldIntervalND.