Uses of Class
no.uib.cipr.matrix.AGDenseMatrix

Packages that use AGDenseMatrix
no.uib.cipr.matrix   
org.astrogrid.cluster.cluster   
org.astrogrid.matrix   
 

Uses of AGDenseMatrix in no.uib.cipr.matrix
 

Methods in no.uib.cipr.matrix that return AGDenseMatrix
 AGDenseMatrix AGDenseMatrix.append(double d)
           
 AGDenseMatrix AGDenseMatrix.append(Matrix mm)
           
 AGDenseMatrix AGDenseMatrix.append(no.uib.cipr.matrix.Vector mm)
           
static AGDenseMatrix AGDenseMatrix.repeatColumn(no.uib.cipr.matrix.Vector v, int n)
           
static AGDenseMatrix AGDenseMatrix.repeatRow(no.uib.cipr.matrix.Vector v, int n)
           
 AGDenseMatrix AGDenseMatrix.reshape(int irow, int icol)
           
 AGDenseMatrix AGDenseMatrix.selectCols(int[] cols, int ncols)
           
 

Methods in no.uib.cipr.matrix with parameters of type AGDenseMatrix
 void AGDenseMatrix.appendCol(AGDenseMatrix r)
           
 

Uses of AGDenseMatrix in org.astrogrid.cluster.cluster
 

Fields in org.astrogrid.cluster.cluster declared as AGDenseMatrix
 AGDenseMatrix ClusterEStepFull.Retval.ab
           
 AGDenseMatrix ClusterEStepFull.Retval.C
           
 AGDenseMatrix RobustClusterErr.RobustClusterErrResult.cv
           
 AGDenseMatrix ClusterMStepFull.Retval.cv
           
 AGDenseMatrix ClusterMStep.Retval.cv
           
 AGDenseMatrix ClusterErr.ClusterErrResult.cv
           
 AGDenseMatrix ClusterMStepFull.Retval.latent
           
 AGDenseMatrix RobustClusterErr.RobustClusterErrResult.lcv
           
 AGDenseMatrix ClusterMStepFull.Retval.lcv
           
 AGDenseMatrix ClusterMStep.Retval.lcv
           
 AGDenseMatrix ClusterErr.ClusterErrResult.lcv
           
 AGDenseMatrix RobustClusterErr.RobustClusterErrResult.lmu
           
 AGDenseMatrix ClusterMStepFull.Retval.lmu
           
 AGDenseMatrix ClusterMStep.Retval.lmu
           
 AGDenseMatrix ClusterErr.ClusterErrResult.lmu
           
 AGDenseMatrix RobustClusterErr.RobustClusterErrResult.mu
           
 AGDenseMatrix ClusterMStepFull.Retval.mu
           
 AGDenseMatrix ClusterMStep.Retval.mu
           
 AGDenseMatrix ClusterErr.ClusterErrResult.mu
           
 AGDenseMatrix ClusterEStepFull.Retval.output
           
 AGDenseMatrix RobustClusterErr.RobustClusterErrResult.q
           
 AGDenseMatrix ClusterEStepFull.Retval.q
           
 AGDenseMatrix ClusterErr.ClusterErrResult.q
           
 

Methods in org.astrogrid.cluster.cluster that return AGDenseMatrix
static AGDenseMatrix ClusterEStep.clustering_e_step(Matrix data, Matrix datatype, int K, Matrix mu, Matrix cv, Matrix lmu, Matrix lcv, no.uib.cipr.matrix.Vector p, CovarianceKind cv_type)
           
 

Methods in org.astrogrid.cluster.cluster with parameters of type AGDenseMatrix
static double ClusterBoundFull.cluster_bound_full(Matrix data, Matrix datatype, int K, AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, no.uib.cipr.matrix.Vector p, AGDenseMatrix output, AGDenseMatrix latent, AGDenseMatrix ab, AGDenseMatrix q, CovarianceKind cv_type)
           
static double ClusterBound.clustering_bound(Matrix alldata, Matrix datatype, int K, AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, no.uib.cipr.matrix.Vector p, AGDenseMatrix q, CovarianceKind cv_type)
           
static ClusterEStepFull.Retval ClusterEStepFull.clustering_e_step_full(Matrix data, Matrix datatype, int K, Matrix latent, AGDenseMatrix ab, Matrix mu, Matrix cv, Matrix lmu, Matrix lcv, no.uib.cipr.matrix.Vector p, CovarianceKind cv_type)
           
 

Constructors in org.astrogrid.cluster.cluster with parameters of type AGDenseMatrix
ClusterErr.ClusterErrResult(AGDenseMatrix q, no.uib.cipr.matrix.Vector p, AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, java.util.List<java.lang.Double> loglik)
           
ClusterEStepFull.Retval(AGDenseMatrix output, AGDenseMatrix ab, AGDenseMatrix q, AGDenseMatrix C)
           
ClusterMStep.Retval(AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, no.uib.cipr.matrix.Vector p)
           
ClusterMStepFull.Retval(AGDenseMatrix latent, AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, no.uib.cipr.matrix.Vector p)
           
RobustClusterErr.RobustClusterErrResult(AGDenseMatrix q, no.uib.cipr.matrix.Vector p, AGDenseMatrix mu, AGDenseMatrix cv, AGDenseMatrix lmu, AGDenseMatrix lcv, no.uib.cipr.matrix.Vector O, java.util.List<java.lang.Double> loglik)
           
 

Uses of AGDenseMatrix in org.astrogrid.matrix
 

Methods in org.astrogrid.matrix that return AGDenseMatrix
static AGDenseMatrix MatrixUtils.add(no.uib.cipr.matrix.Matrix a, no.uib.cipr.matrix.Matrix b)
          R = A+B.
 AGDenseMatrix Matrix.append(double d)
          append double value.
 AGDenseMatrix Matrix.append(Matrix m)
          Append the matrix as new rows onto the existing matrix.
 AGDenseMatrix Matrix.append(no.uib.cipr.matrix.Vector m)
          Append the matrix as new rows onto the existing matrix.
static AGDenseMatrix MatrixUtils.mult(no.uib.cipr.matrix.Matrix a, no.uib.cipr.matrix.Matrix b)
          C = AB
static AGDenseMatrix MatrixUtils.mult(no.uib.cipr.matrix.Matrix a, no.uib.cipr.matrix.Vector b)
          C = AB
static AGDenseMatrix MatrixUtils.multAt(no.uib.cipr.matrix.Matrix a, no.uib.cipr.matrix.Matrix b)
          C = ATB
static AGDenseMatrix MatrixUtils.multAt(no.uib.cipr.matrix.Vector v, no.uib.cipr.matrix.Matrix b)
          C = ATB.
static AGDenseMatrix MatrixUtils.multBt(no.uib.cipr.matrix.Matrix a, no.uib.cipr.matrix.Matrix b)
          C = ABT
static AGDenseMatrix MatrixUtils.reshape(Matrix m, int ni, int nj)
           
static AGDenseMatrix MatrixUtils.reshape(no.uib.cipr.matrix.Vector v, int ni, int nj)
           
static AGDenseMatrix MatrixUtils.transpose(no.uib.cipr.matrix.Matrix a)
           
static AGDenseMatrix MatrixUtils.zeros(int n)
           
static AGDenseMatrix MatrixUtils.zeros(int n, int m)
           
 



Copyright © 2008-2010 AstroGrid. All Rights Reserved.