Uses of Class
dev.nm.algebra.linear.vector.doubles.dense.DenseVector
-
Packages that use DenseVector Package Description dev.nm.algebra.linear.matrix.doubles.operation dev.nm.algebra.linear.vector.doubles.dense dev.nm.analysis.differentiation.multivariate dev.nm.stat.factor.pca -
-
Uses of DenseVector in dev.nm.algebra.linear.matrix.doubles.operation
Subclasses of DenseVector in dev.nm.algebra.linear.matrix.doubles.operation Modifier and Type Class Description classSVECSVECconverts a symmetric matrix K = {Kij} into a vector of dimension n(n+1)/2.Methods in dev.nm.algebra.linear.matrix.doubles.operation that return DenseVector Modifier and Type Method Description DenseVectorFastKroneckerProduct. getColumn(int j)DenseVectorFastKroneckerProduct. getRow(int i) -
Uses of DenseVector in dev.nm.algebra.linear.vector.doubles.dense
Methods in dev.nm.algebra.linear.vector.doubles.dense that return DenseVector Modifier and Type Method Description DenseVectorDenseVector. add(double scalar)DenseVectorDenseVector. add(DenseVector that)DenseVectorVectorMathOperation. add(Vector v1, double c)Adds a constant to a vector, element-by-element.DenseVectorVectorMathOperation. add(Vector v1, Vector v2)Adds two vectors, element-by-element.DenseVectorDenseVector. deepCopy()DenseVectorDenseVector. divide(DenseVector that)DenseVectorVectorMathOperation. divide(Vector v1, Vector v2)A vector is divided by another vector, element-by-element.DenseVectorDenseVector. minus(double scalar)DenseVectorDenseVector. minus(DenseVector that)DenseVectorVectorMathOperation. minus(Vector v1, double c)Subtracts a constant from a vector, element-by-element.DenseVectorVectorMathOperation. minus(Vector v1, Vector v2)A vector subtracts another vector, element-by-element.DenseVectorDenseVector. multiply(DenseVector that)DenseVectorVectorMathOperation. multiply(Vector v1, Vector v2)Multiplies two vectors, element-by-element.DenseVectorDenseVector. opposite()DenseVectorVectorMathOperation. opposite(Vector v1)Multiples a vector by -1, element-by-element.DenseVectorDenseVector. pow(double scalar)DenseVectorVectorMathOperation. pow(Vector v1, double c)Takes a power of a vector, element-by-element.DenseVectorDenseVector. scaled(double c)DenseVectorDenseVector. scaled(Real c)DenseVectorVectorMathOperation. scaled(Vector v1, double c)Scales a vector, element-by-element.DenseVectorVectorMathOperation. scaled(Vector v1, Real c)Scales a vector, element-by-element.DenseVectorDenseVector. ZERO()Methods in dev.nm.algebra.linear.vector.doubles.dense with parameters of type DenseVector Modifier and Type Method Description DenseVectorDenseVector. add(DenseVector that)DenseVectorDenseVector. divide(DenseVector that)doubleDenseVector. innerProduct(DenseVector that)DenseVectorDenseVector. minus(DenseVector that)DenseVectorDenseVector. multiply(DenseVector that)voidDenseVector. set(int from, DenseVector replacement)Replaces a sub-vectorv[from : replacement.length]by a replacement starting at positionfrom.Constructors in dev.nm.algebra.linear.vector.doubles.dense with parameters of type DenseVector Constructor Description DenseVector(DenseVector vector)Copy constructor. -
Uses of DenseVector in dev.nm.analysis.differentiation.multivariate
Subclasses of DenseVector in dev.nm.analysis.differentiation.multivariate Modifier and Type Class Description classGradientThe gradient of a scalar field is a vector field which points in the direction of the greatest rate of increase of the scalar field, and of which the magnitude is the greatest rate of change. -
Uses of DenseVector in dev.nm.stat.factor.pca
Methods in dev.nm.stat.factor.pca that return DenseVector Modifier and Type Method Description DenseVectorPCAbySVD. sdPrincipalComponents()Gets the standard deviations of the principal components (i.e., the square roots of the eigenvalues of the correlation (or covariance) matrix, though the calculation is actually done with the singular values of the data matrix)
-