Uses of Class
pulse.math.linear.Vector
-
Packages that use Vector Package Description pulse.math Provides general math functionality that is used when finding the direction (aVector
) of the minimum, including operations with vector and matrices.pulse.math.linear A linear algebra package based mostly on the EJML library.pulse.problem.schemes.rte.dom Contains the implementation of the discrete ordinates method (DOM) for the solution of a anisotropic nonlinear radiative transfer equation.pulse.search.direction Provides a list ofPathSolver
s and associated classes, which are used to determine the direction of the minimum of a specificSearchTask
using an iterative approach.pulse.search.linear Provides classes that are able to search for the minimum of a scalar function of a vector variable that is unimodal on a specificSegment
. -
-
Uses of Vector in pulse.math
Methods in pulse.math that return Vector Modifier and Type Method Description Vector
ParameterVector. toVector()
Methods in pulse.math with parameters of type Vector Modifier and Type Method Description void
ParameterVector. setValues(Vector v)
Constructors in pulse.math with parameters of type Vector Constructor Description ParameterVector(ParameterVector proto, Vector v)
Constructs anIndexedVector
based onv
and a list of keywordindices
-
Uses of Vector in pulse.math.linear
Methods in pulse.math.linear that return Vector Modifier and Type Method Description Vector
Vector. inverted()
Creates a newVector
based onthis
one, all elements of which are inverted, i.e.Vector
Vector. multComponents(Vector v)
Component-wise vector multiplicationVector
RectangularMatrix. multiply(Vector v)
Multiplies thisMatrix
by the vectorv
, which is represented by aMatrix
, wheren
is the dimension ofv
.Vector
Vector. multiply(double f)
Performs an element-wise multiplication byf
.Vector
Vector. normalise()
Performs normalisation, e.g.static Vector
Vector. random(int n, double min, double max)
Creates a vector with random coordinates confined within [min;max]Vector
Vector. subtract(Vector v)
Performs an element-wise subtraction ofv
fromthis
.Vector
Vector. sum(Vector v)
Performs an element-wise summation ofthis
andv
.Methods in pulse.math.linear with parameters of type Vector Modifier and Type Method Description double
Vector. distanceToSq(Vector v)
Calculates the squared distance fromthis Vector
tov
(which is the squared length of the connectingVector
).double
Vector. dot(Vector v)
Calculates the scalar product ofthis
andv
.Vector
Vector. multComponents(Vector v)
Component-wise vector multiplicationVector
RectangularMatrix. multiply(Vector v)
Multiplies thisMatrix
by the vectorv
, which is represented by aMatrix
, wheren
is the dimension ofv
.static SquareMatrix
SquareMatrix. outerProduct(Vector a, Vector b)
Calculates the outer product of two vectors.Vector
Vector. subtract(Vector v)
Performs an element-wise subtraction ofv
fromthis
.Vector
Vector. sum(Vector v)
Performs an element-wise summation ofthis
andv
.Constructors in pulse.math.linear with parameters of type Vector Constructor Description Vector(Vector v)
Copy constructor. -
Uses of Vector in pulse.problem.schemes.rte.dom
Methods in pulse.problem.schemes.rte.dom that return Vector Modifier and Type Method Description Vector
ButcherTableau. getC()
Vector
ButcherTableau. getEstimator()
Vector
ButcherTableau. getInterpolator()
abstract Vector[]
AdaptiveIntegrator. step(int j, double sign)
Vector[]
ExplicitRungeKutta. step(int j, double sign)
Vector[]
TRBDF2. step(int j, double sign)
Performs a TRBDF2 step.Methods in pulse.problem.schemes.rte.dom with parameters of type Vector Modifier and Type Method Description void
ButcherTableau. setC(Vector c)
void
ButcherTableau. setEstimator(Vector bHat)
void
ButcherTableau. setInterpolator(Vector b)
-
Uses of Vector in pulse.search.direction
Methods in pulse.search.direction that return Vector Modifier and Type Method Description Vector
DirectionSolver. direction(GradientGuidedPath p)
Finds the direction of the minimum using the previously calculated values stored inp
.default Vector
HessianDirectionSolver. direction(GradientGuidedPath p)
Uses an approximation of the Hessian matrix, containing the information on second derivatives, calculated with the BFGS formula in combination with the local value of the gradient to evaluate the direction of the minimum onp
.Vector
GradientGuidedPath. getDirection()
Vector
GradientGuidedPath. getGradient()
Vector
GradientBasedOptimiser. gradient(GeneralTask task)
Calculates theVector
gradient of the target function (the sum of squared residuals, SSR, for thistask
.static Vector
HessianDirectionSolver. solve(ComplexPath cp, Vector rhs)
Methods in pulse.search.direction with parameters of type Vector Modifier and Type Method Description void
GradientGuidedPath. setDirection(Vector currentDirection)
void
GradientGuidedPath. setGradient(Vector currentGradient)
static Vector
HessianDirectionSolver. solve(ComplexPath cp, Vector rhs)
-
Uses of Vector in pulse.search.linear
Methods in pulse.search.linear with parameters of type Vector Modifier and Type Method Description static Segment
LinearOptimiser. domain(ParameterVector x, Vector p)
Sets the domain for this linear search onp
.
-