Mult3x3Matrix(Array, Array) Function

Top 

Description

Returns the product of two three by three matrices.

 

This function has been Deprecated. Please use the multiplication operator (*) to multiply two matrices.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

 

Function Signature

Mult3x3Matrix(

Array arrayArgument1,


Array arrayArgument2)

 

 

Arguments

arrayArgument1


Description:

A three by three row major matrix.

Required Size:

At least 9

 

 

arrayArgument2


Description:

A three by three row major matrix.

Required Size:

At least 9

 

 

 

Return Value

Type:

Array of number (size = 9)

 

 

Returns the product of two three by three matrices.

 

Syntax

myArray1 = Mult3x3Matrix(myArray2, myArray3);

 

 

See also

Mult3x3Matrix