Transpose3x3Matrix(Array) Function

Top 

Description

Returns the transpose of a three by three matrix by replacing all elements aij with aji.

 

This function has been Deprecated. Please use Matrix.Transpose() instead.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

 

Function Signature

Transpose3x3Matrix(

Array matrix)

 

 

Arguments

matrix


Description:

A three by three row major matrix.

Required Size:

At least 9

 

 

 

Return Value

Type:

Array of number (size = 9)

 

 

Returns the transpose of a three by three matrix by replacing all elements aij with aji.

 

Syntax

myArray1 = Transpose3x3Matrix(myArray2);

 

 

See also

Transpose3x3Matrix