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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastFourierTransformer.java 563 * @param subVector recursion subvector
567 int d, int[] subVector)
571 if (subVector.length == dimensionSize.length) {
575 subVector[d] = i;
576 temp[i] = mdcm.get(subVector);
585 subVector[d] = i;
586 mdcm.set(temp[i], subVector);
589 int[] vector = new int[subVector.length + 1];
590 System.arraycopy(subVector, 0, vector, 0, subVector.length)
    [all...]
  /external/eigen/Eigen/src/Core/
VectorwiseOp.h 192 typename ExpressionType::RowXpr>::type SubVector;
194 * \returns the i-th subvector according to the \c Direction */
196 SubVector subVector(Index i)
198 return SubVector(m_matrix.derived(),i);
495 /** Copies the vector \a other to each subvector of \c *this */
506 /** Adds the vector \a other to each subvector of \c *this */
516 /** Substracts the vector \a other to each subvector of \c *this */
526 /** Multiples each subvector of \c *this by the vector \a other */
538 /** Divides each subvector of \c *this by the vector \a other *
    [all...]

Completed in 455 milliseconds