Object/Class

au.id.cxd.math.model.components

SingularValueDecomposition

Related Docs: class SingularValueDecomposition | package components

Permalink

object SingularValueDecomposition

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SingularValueDecomposition
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(P: DenseMatrix[Double]): DenseSVD

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def attribCorrelation(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): DenseMatrix[Double]

    Permalink

    calculate the correlation matrix of attribute to attribute (columns to columns) derived from the SVD decomposition $$ X = U\SigmaV' $$ The correlation matrix is approximated such that $$ X'X = V\Sigma^ V' $$

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def contributions(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): DenseVector[Double]

    Permalink

    calculate the contribution of each singular vector to the whole entropy for each singular component calculated as

    calculate the contribution of each singular vector to the whole entropy for each singular component calculated as

    $$ f_k = s_k^2/\sum_{i=1}^r s_i^2 $$

    returns

    vector f of values for contribution to entropy.

  9. def entropy(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): Double

    Permalink

    calculate the entropy for the entire data set.

    calculate the entropy for the entire data set. Based on the singular components this gives a value between 0 and 1 which indicates the spread of variation within the singular components. If the entropy is close to 0 the spread of variation is explained by the first singular component if the entropy is close to 1 the spread of variation is almost uniform between all singular components.

  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def objectAttribCorrelation(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): DenseMatrix[Double]

    Permalink

    approximate correlation matrix of object (rows) and attributes (columns) is derived from the SVD decomposition $$ X = U\SigmaV' $$ such that $$ XX' = U\Sigma^2U' $$ Where $\Sigma$ is the diagonal matrix of the singular values.

  20. def singularDiagonal(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): DenseMatrix[Double]

    Permalink

    convert the singular values into a matrix

  21. def singularRootDiagonal(svD: SVD[DenseMatrix[Double], DenseVector[Double]]): DenseMatrix[Double]

    Permalink

    convert the singular values into a diagonal matrix where the values are the square root of the diagonal.

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped