MultMatrixVector(Array, Array) Function

Top 

Description

Returns the product of a three by three matrix and a three element vector.

 

This function has been Deprecated. Please use the multiplication (*) operator to multiply a Matrix with an Array.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

 

Function Signature

MultMatrixVector(

Array matrix,


Array vector)

 

 

Arguments

matrix


Description:

A three by three row major matrix.

Required Size:

At least 9

 

 

vector


Description:

A three-element vector.

Required Size:

At least 3

 

 

 

Return Value

Type:

Array of number (size = 3)

 

 

Returns the product of a three by three matrix and a three element vector.

 

Syntax

myArray1 = MultMatrixVector(myArray2, myArray3);

 

 

See also

MultMatrixVector