Construction Shortcuts - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Matrix and Vector Construction Shortcuts

 

Description

Examples

Description

• 

The following notational shortcuts are available for creating and joining rtable-based Matrices and Vectors.

  

< a, b, c > constructs a column Vector from scalars, or a Matrix from row Vectors.

  

< a | b | c > constructs a row Vector from scalars, or a Matrix from column Vectors.

  

< a , b ; c , d > constructs a Matrix from rows of scalars.

  

< a , b | c , d > constructs a Matrix from columns of scalars.

• 

In the first two forms, if any of the values given between the matching pair of angle brackets < > are not of type scalar or string, then a Matrix is constructed. Otherwise, a Vector is constructed.

• 

In the third form, a Matrix is always constructed. Each sequence of comma-separated values defines a row, and the sequence of semicolon-separated rows are assembled into a Matrix.

• 

In the fourth form, a Matrix is also always constructed. Each sequence of comma-separated values defines a columns, and the sequence of semicolon-separated columns are assembled into a Matrix.

• 

The third form can also be used to construct a matrix from Vectors. In that case, all Vectors, whether rows or columns, are interpreted as row Vectors.

• 

If a Vector or Matrix constructed in this form is to appear literally on the left hand side of an equality, a space is required between the closing > delimiter and the = operator. If the space is omitted, >= will be parsed as a greater-or-equal operator, not a closing delimiter.

• 

The element datatype of the result is deduced from the data by choosing the most efficient Matrix or Vector datatype that is capable of representing all values representable by the datatypes of any of the input Matrices or Vectors.

  

If any of the input values are scalar, then for the purposes of datatype determination, each scalar is considered as a 1x1 Matrix with a datatype of either float8 if the scalar is a hardware float, or anything otherwise.

• 

In all cases, the result is constructed by using default values for all construction parameters other than datatype, orientation (of Vectors), and the entries. In particular, the dimension information is deduced from the data. For more information about construction parameters, see the Matrix and Vector constructors.

• 

In general, this notation is the most efficient (in terms of both time and space) method to construct and combine Vectors and Matrices that don't require special features such as indexing functions or special storage representations (for example, sparse storage).

Examples

Construct a column Vector

c1&comma;2&comma;3

c123

(1)

Construct a row Vector

r1|2|3

r123

(2)

Construct a Matrix from rows of scalars

1|2|3&comma;4|5|6

123456

(3)

Construct a Matrix from columns of scalars

1&comma;2&comma;3|4&comma;5&comma;6

142536

(4)

Construct a Matrix by juxtaposing two column Vectors

M1&comma;2&comma;3|4&comma;5&comma;6

M142536

(5)

Augment this Matrix with a column Vector

M|x&comma;y&comma;z

14x25y36z

(6)

Construct a Matrix by stacking row Vectors

1|2|3&comma;4|5|6

123456

(7)

Construct a 1 x n Matrix from 2 row Vectors

1|2|3|4|5|6

123456

(8)

Create a Matrix and a column Vector, and join them

A2|3&comma;5|7

A2357

(9)

b6&comma;9

b6−9

(10)

A|b

23657−9

(11)

A space is required after a closing ">" followed by an equal sign

evalb1&comma;2·3&comma;4=11

true

(12)

See Also

Matrix

rtable

Vector