Deprecated List

Member ColumnsNumber () const
use cols()

Member Determinant () const
use *this.determinant() (or *this.lu().determinant() for large matrices) Calculate and return the matrix determinant (Laplace)

Member Dump ()
use ostream << *this or even ostream << *this.withFormat(...)

Member ElementAt (unsigned int i, unsigned int j) const
use *this(i,j) (or *this.coeff(i,j)) Return the element stored in the i-th rows at the j-th column

Member GetColumn (const unsigned int j)
use *this.col(j)

Member GetRow (const unsigned int i)
use *this.row(i)

Member Import (const MatrixBase< OtherDerived > &b)
use m.cast<NewScalar>()

Member LLT::isPositiveDefinite (void) const

Member Norm () const
use norm()

Member Normalize ()

use normalize() or normalized()

use normalized()

Member operator+ (const Scalar k)
use *this.cwise() + k

Member operator+= (const Scalar k)
use *this.cwise() += k (Modifier) Add to each element of this matrix the scalar constant k.

Member operator- (const Scalar k)
use *this.cwise() - k

Member operator-= (const Scalar k)
use *this.cwise() -= k (Modifier) Subtract from each element of this matrix the scalar constant k.

Member operator^ (const Derived &p) const
use .cross(p)

Member OuterProduct (const MatrixBase< OtherDerived1 > &a, const MatrixBase< OtherDerived2 > &b)

use *this.dot Matrix multiplication: calculates the cross product.

use *this = a * b.transpose() (or *this = a * b.adjoint() for complexes)

Member QR::isFullRank () const
use isInjective()

Member RowsNumber () const
use rows()

Member SetColumn (unsigned int j, Scalar *v)
use *this.col(j) = expression

Member SetColumn (unsigned int j, const MatrixBase< OtherDerived > &other)
use *this.col(i) = other

Member SetDiagonal (Scalar *v)
use *this.diagonal() = expression

Member SetIdentity ()
use *this.setIdentity() or *this = MatrixType::Identity(rows,cols), etc.

Member SetRow (unsigned int i, Scalar *v)
use *this.row(i) = expression

Member SetRow (unsigned int j, const MatrixBase< OtherDerived > &other)
use *this.row(i) = other

Member SetZero ()
use *this.setZero() or *this = MatrixType::Zero(rows,cols), etc.

Member SquaredNorm () const
use squaredNorm()

Member SwapColumns (const unsigned int i, const unsigned int j)
use m1.col(i).swap(m1.col(j));

Member SwapRows (const unsigned int i, const unsigned int j)
use m1.col(i).swap(m1.col(j))

Member Trace () const
use trace()

Member Transpose ()

use transposeInPlace() or transpose()

use transpose()

Member V (const int i) const
use m.coeff(i) or m[i] or m(i)

Member V ()

use .data()

use .data()

Member vcg::Transpose (const Eigen::Matrix< Scalar, Size, Size, StorageOrder > &m)
use transposeInPlace() or transpose()
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines


vcglib
Author(s): Christian Bersch
autogenerated on Fri Jan 11 09:21:29 2013