Searched refs:outerProduct (Results 1 - 9 of 9) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldVector.java247 FieldMatrix<T> outerProduct(FieldVector<T> v) method in interface:FieldVector
256 FieldMatrix<T> outerProduct(T[] v) method in interface:FieldVector
H A DRealVector.java888 RealMatrix outerProduct(RealVector v); method in interface:RealVector
897 RealMatrix outerProduct(double[] v); method in interface:RealVector
H A DSparseFieldVector.java407 public FieldMatrix<T> outerProduct(SparseFieldVector<T> v) method in class:SparseFieldVector
424 public FieldMatrix<T> outerProduct(T[] v) throws IllegalArgumentException { method in class:SparseFieldVector
440 public FieldMatrix<T> outerProduct(FieldVector<T> v) method in class:SparseFieldVector
443 return outerProduct((SparseFieldVector<T>)v);
445 return outerProduct(v.toArray());
H A DArrayFieldVector.java611 public FieldMatrix<T> outerProduct(FieldVector<T> v) method in class:ArrayFieldVector
614 return outerProduct((ArrayFieldVector<T>) v);
634 public FieldMatrix<T> outerProduct(ArrayFieldVector<T> v) method in class:ArrayFieldVector
636 return outerProduct(v.data);
640 public FieldMatrix<T> outerProduct(T[] v) method in class:ArrayFieldVector
H A DArrayRealVector.java939 public RealMatrix outerProduct(RealVector v) method in class:ArrayRealVector
942 return outerProduct((ArrayRealVector) v);
962 public RealMatrix outerProduct(ArrayRealVector v) method in class:ArrayRealVector
964 return outerProduct(v.data);
969 public RealMatrix outerProduct(double[] v) method in class:ArrayRealVector
H A DAbstractRealVector.java723 public RealMatrix outerProduct(RealVector v) throws IllegalArgumentException { method in class:AbstractRealVector
746 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException { method in class:AbstractRealVector
747 return outerProduct(new ArrayRealVector(v, false));
H A DOpenMapRealVector.java612 public RealMatrix outerProduct(double[] v) throws IllegalArgumentException { method in class:OpenMapRealVector
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp301 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) function in namespace:deqp::gles3::Functional::MatrixCaseUtils
963 evalCtx.color.xyz() = reduceToVec3(outerProduct(in0, in1));
1808 { "outerproduct", "Matrix outerProduct() tests", OP_OUTER_PRODUCT, false, true },
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3521 return "outerProduct";
3540 ExprP<Matrix<float, Rows, Cols> > outerProduct (const ExprP<Vector<float, Rows> >& left, function in namespace:deqp::gls::BuiltinPrecisionTests::Functions
3676 ExprP<Mat2> t3 = outerProduct(t2, matC);

Completed in 193 milliseconds