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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldVector.java 247 FieldMatrix<T> outerProduct(FieldVector<T> v)
256 FieldMatrix<T> outerProduct(T[] v)
RealVector.java 888 RealMatrix outerProduct(RealVector v);
897 RealMatrix outerProduct(double[] v);
    [all...]
SparseFieldVector.java 407 public FieldMatrix<T> outerProduct(SparseFieldVector<T> v)
424 public FieldMatrix<T> outerProduct(T[] v) throws IllegalArgumentException {
440 public FieldMatrix<T> outerProduct(FieldVector<T> v)
443 return outerProduct((SparseFieldVector<T>)v);
445 return outerProduct(v.toArray());
ArrayFieldVector.java 611 public FieldMatrix<T> outerProduct(FieldVector<T> v)
614 return outerProduct((ArrayFieldVector<T>) v);
634 public FieldMatrix<T> outerProduct(ArrayFieldVector<T> v)
636 return outerProduct(v.data);
640 public FieldMatrix<T> outerProduct(T[] v)
ArrayRealVector.java 939 public RealMatrix outerProduct(RealVector v)
942 return outerProduct((ArrayRealVector) v);
962 public RealMatrix outerProduct(ArrayRealVector v)
964 return outerProduct(v.data);
969 public RealMatrix outerProduct(double[] v)
    [all...]
AbstractRealVector.java 723 public RealMatrix outerProduct(RealVector v) throws IllegalArgumentException {
746 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException {
747 return outerProduct(new ArrayRealVector(v, false));
OpenMapRealVector.java 612 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException {
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btSpatialAlgebra.h 311 out.m_topLeftMat = outerProduct(a.m_topVec, b.m_bottomVec);
312 out.m_topRightMat = outerProduct(a.m_topVec, b.m_topVec);
313 out.m_topLeftMat = outerProduct(a.m_bottomVec, b.m_bottomVec);
322 out.m_topLeftMat = outerProduct(a.m_topVec, b.m_bottomVec);
323 out.m_topRightMat = outerProduct(a.m_topVec, b.m_topVec);
324 out.m_bottomLeftMat = outerProduct(a.m_bottomVec, b.m_bottomVec);
  /external/vulkan-validation-layers/libs/glm/detail/
func_matrix.hpp 138 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/outerProduct.xml">GLSL outerProduct man page</a>
143 GLM_FUNC_DECL typename detail::outerProduct_trait<T, P, vecTypeA, vecTypeB>::type outerProduct(vecTypeA<T, P> const & c, vecTypeB<T, P> const & r);
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_mat4.hpp 179 detail::fmat4x4SIMD outerProduct(
  /external/opencv3/3rdparty/openexr/Imath/
ImathMatrixAlgo.h 211 template <class T> Matrix44<T> outerProduct
353 template <class T> Matrix33<T> outerProduct
817 outerProduct (const Vec4<T> &a, const Vec4<T> &b )
    [all...]
ImathMatrixAlgo.cpp 156 C += outerProduct ((V3d) B[i] - Bcenter, (V3d) A[i] - Acenter);
163 C += outerProduct (w * ((V3d) B[i] - Bcenter), (V3d) A[i] - Acenter);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp 296 case OP_OUTER_PRODUCT: return "outerProduct";
644 // outerProduct
647 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>& b)
958 evalCtx.color.xyz() = reduceToVec3(outerProduct(in0, in1));
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp 301 case OP_OUTER_PRODUCT: return "outerProduct";
649 // outerProduct
652 tcu::Matrix<T, Cols, Rows> outerProduct (const tcu::Vector<T, Cols>& a, const tcu::Vector<T, Rows>& b)
963 evalCtx.color.xyz() = reduceToVec3(outerProduct(in0, in1));
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBody.cpp 647 inline btMatrix3x3 outerProduct(const btVector3& v0, const btVector3& v1) //renamed it from vecMulVecTranspose (http://en.wikipedia.org/wiki/Outer_product); maybe it should be moved to btVector3 like dot and cross?
668 #define vecMulVecTranspose(v0, v1Transposed) outerProduct(v0, v1Transposed)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 3127 milliseconds