HomeSort by relevance Sort by last modified time
    Searched refs:othersize (Results 1 - 4 of 4) sorted by null

  /external/eigen/test/
product_mmtr.cpp 27 DenseIndex othersize = internal::random<DenseIndex>(1,200); local
33 MatrixColMaj soc(size,othersize); soc.setRandom();
34 MatrixColMaj osc(othersize,size); osc.setRandom();
35 MatrixRowMaj sor(size,othersize); sor.setRandom();
36 MatrixRowMaj osr(othersize,size); osr.setRandom();
product_symm.cpp 12 template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize)
17 typedef Matrix<Scalar, Size, OtherSize> Rhs1;
18 typedef Matrix<Scalar, OtherSize, Size> Rhs2;
19 enum { order = OtherSize==1 ? 0 : RowMajor };
20 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
31 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize);
    [all...]
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 94 const Index othersize = Side==OnTheLeft? rhs.cols() : rhs.rows(); local
103 ::run(size, othersize, &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &rhs.coeffRef(0,0), rhs.outerStride(), blocking);
PlainObjectBase.h 298 const Index othersize = other.rows()*other.cols(); local
302 resize(1, othersize);
307 resize(othersize, 1);
    [all...]

Completed in 865 milliseconds