Skip to content

Latest commit

 

History

History
140 lines (110 loc) · 1.76 KB

matrixCompMult.md

File metadata and controls

140 lines (110 loc) · 1.76 KB

matrixCompMult

matrixCompMult performs a component-wise multiplication of two

matrices, yielding a result matrix where each component, result[i][j] is

computed as the scalar product of x[i][j] and

y[i][j].

matrixCompMult(mat2,mat2)

Parameters

x Type: mat2 y Type: mat2

Return Value

Type: mat2

JSON
{
  "Type": "matrixCompMult(mat2,mat2)",
  "Name": "matrixCompMult(mat2,mat2)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "mat2"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "mat2"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat2"
    }
  ]
}

matrixCompMult(mat3,mat3)

Parameters

x Type: mat3 y Type: mat3

Return Value

Type: mat3

JSON
{
  "Type": "matrixCompMult(mat3,mat3)",
  "Name": "matrixCompMult(mat3,mat3)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "mat3"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "mat3"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat3"
    }
  ]
}

matrixCompMult(mat4,mat4)

Parameters

x Type: mat4 y Type: mat4

Return Value

Type: mat4

JSON
{
  "Type": "matrixCompMult(mat4,mat4)",
  "Name": "matrixCompMult(mat4,mat4)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "mat4"
    },
    {
      "Connection": null,
      "Id": "y",
      "Type": "mat4"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "mat4"
    }
  ]
}