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 202 * \returns the i-th subvector according to the \c Direction */
205 typename ExpressionType::RowXpr>::type SubVector;
206 SubVector subVector(Index i)
208 return SubVector(m_matrix.derived(),i);
433 /** Copies the vector \a other to each subvector of \c *this */
443 /** Adds the vector \a other to each subvector of \c *this */
452 /** Substracts the vector \a other to each subvector of \c *this */
461 /** Multiples each subvector of \c *this by the vector \a other */
472 /** Divides each subvector of \c *this by the vector \a other *
    [all...]

Completed in 974 milliseconds