ARRAY TRANSPOSE

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Array functions >

ARRAY TRANSPOSE

 

Description

 

Transpose a symmetric matrix.

 

Syntax

 

ARRAY TRANSPOSE SourceArray

 

Returns

 

None

 

Parameters

 

Name

Type

Optional

Meaning

SourceArray

Array

No

Name of the variable array containing elements to be copied.

 

Remarks

 

A symmetric matrix is an array where dimensions 1 and 2 are equal like 2x2, 5x5, 100x100, ...

 

Restrictions

 

Only symmetric matrix are supported.

 

Only matrix of the following data types are supported:

all numeric types other than currency

dynamic strings (fixed strings not supported)

UDT

 

See also

 

LBound, UBound, ARRAY SORT,

 

Examples