Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

Uses of Class
de.lmu.ifi.dbs.elki.math.linearalgebra.Vector

Packages that use Vector
de.lmu.ifi.dbs.elki.algorithm.result Package to collect result classes for the results of algorithms. 
de.lmu.ifi.dbs.elki.data Package collects basic classes for different data types, database object types and label types. 
de.lmu.ifi.dbs.elki.math.linearalgebra Linear Algebra package provides classes and computational methods for operations on matrices. 
de.lmu.ifi.dbs.elki.math.statistics Package to support statistical tests and methods. 
de.lmu.ifi.dbs.elki.utilities Package collects various classes and methods of global utility. 
 

Uses of Vector in de.lmu.ifi.dbs.elki.algorithm.result
 

Fields in de.lmu.ifi.dbs.elki.algorithm.result declared as Vector
private  Vector CorrelationAnalysisSolution.centroid
          The centroid if the objects belonging to the hyperplane induced by the correlation.
 

Methods in de.lmu.ifi.dbs.elki.algorithm.result that return Vector
 Vector CorrelationAnalysisSolution.getCentroid()
          Returns the centroid of this model.
 

Constructors in de.lmu.ifi.dbs.elki.algorithm.result with parameters of type Vector
CorrelationAnalysisSolution(LinearEquationSystem solution, Database<V> db, Matrix strongEigenvectors, Matrix weakEigenvectors, Matrix similarityMatrix, Vector centroid)
          Provides a new CorrelationAnalysisSolution holding the specified matrix.
CorrelationAnalysisSolution(LinearEquationSystem solution, Database<V> db, Matrix strongEigenvectors, Matrix weakEigenvectors, Matrix similarityMatrix, Vector centroid, NumberFormat nf)
          Provides a new CorrelationAnalysisSolution holding the specified matrix and number format.
 

Uses of Vector in de.lmu.ifi.dbs.elki.data
 

Methods in de.lmu.ifi.dbs.elki.data that return Vector
 Vector DoubleVector.getColumnVector()
           
 Vector FeatureVector.getColumnVector()
          Returns a Vector representing in one column and getDimensionality() rows the values of this FeatureVector.
 Vector SparseDoubleVector.getColumnVector()
           
 Vector BitVector.getColumnVector()
           
 Vector FloatVector.getColumnVector()
           
 

Uses of Vector in de.lmu.ifi.dbs.elki.math.linearalgebra
 

Methods in de.lmu.ifi.dbs.elki.math.linearalgebra that return Vector
 Vector Vector.copy()
          Returns a copy of this vector.
 Vector Matrix.getColumnVector(int j)
          Returns the jth column of this matrix as vector.
 Vector Matrix.getRowVector(int i)
          Returns the ith row of this matrix as vector.
 Vector Vector.inverseVector()
          Inverts every element of the vector.
 Vector Vector.minus(Vector v)
          Returns this vector minus the specified vector v.
 Vector Vector.plus(Vector v)
          Returns a new vector which is the result of this vector plus the specified vector.
static Vector Vector.randomNormalizedVector(int dimensionality)
          Returns a randomly created vector of length 1.0
 Vector Vector.sqrtVector()
          Square roots every element of the vector.
 Vector Vector.times(double s)
          Returns a new vector which is the result of this vector multiplied by the specified scalar.
static Vector Vector.unitVector(int dimensionality, int i)
          Returns the ith unit vector of the specified dimensionality.
 

Methods in de.lmu.ifi.dbs.elki.math.linearalgebra with parameters of type Vector
private  void Vector.checkDimensions(Vector v)
          Check if this.getDimensionality() == v.getDimensionality().
static Matrix Matrix.diagonal(Vector diagonal)
          Returns a quadratic Matrix consisting of zeros and of the given values on the diagonal.
 Vector Vector.minus(Vector v)
          Returns this vector minus the specified vector v.
 Vector Vector.plus(Vector v)
          Returns a new vector which is the result of this vector plus the specified vector.
 double Vector.scalarProduct(Vector v)
          Returns the scalar product of this vector and the specified vector v.
 

Uses of Vector in de.lmu.ifi.dbs.elki.math.statistics
 

Fields in de.lmu.ifi.dbs.elki.math.statistics declared as Vector
private  Vector MultipleLinearRegression.b
          The (p+1 x 1) - vector holding the estimated b-values (b0, b1, ..., bp)^T.
private  Vector MultipleLinearRegression.e
          The (n x 1) - vector holding the estimated residuals (e1, ..., en)^T.
private  Vector MultipleLinearRegression.y
          The (n x 1) - vector holding the y-values (y1, ..., yn)^T.
 

Methods in de.lmu.ifi.dbs.elki.math.statistics that return Vector
 Vector MultipleLinearRegression.getEstimatedCoefficients()
          Returns the estimated coefficients
 Vector MultipleLinearRegression.getEstimatedResiduals()
          Returns the estimated residuals
 

Methods in de.lmu.ifi.dbs.elki.math.statistics with parameters of type Vector
private static Matrix PolynomialRegression.xMatrix(Vector x, int p)
           
 

Constructors in de.lmu.ifi.dbs.elki.math.statistics with parameters of type Vector
MultipleLinearRegression(Vector y, Matrix x)
          Provides a new multiple linear regression model with the specified parameters.
PolynomialRegression(Vector y, Vector x, int p)
          Provides a new polynomial regression model with the specified parameters.
 

Uses of Vector in de.lmu.ifi.dbs.elki.utilities
 

Methods in de.lmu.ifi.dbs.elki.utilities that return Vector
static Vector Util.centroid(Matrix data)
          Returns the centroid as a Vector object of the specified data matrix.
 


Release 0.1 (2008-07-10_1838)