HomeSort by relevance Sort by last modified time
    Searched refs:outerProduct (Results 1 - 14 of 14) 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/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/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/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/mesa3d/src/compiler/glsl/
builtin_functions.cpp 755 BA1(outerProduct);
    [all...]

Completed in 5342 milliseconds