MTM
full
identity matrix
issparse
sparse identity matrix
Calling Sequence
Parameters
Description
Examples
Compatibility
full(X)
issparse(X)
X
-
list, Vector, Matrix, or array
full(X) returns a dense Vector, Matrix, or Array corresponding to X.
issparse(X) returns true when X is a Vector, Matrix, or Array with sparse storage and false otherwise.
If n is an integer and m is omitted, the resulting matrix is square.
If the input X is an array, its elements are used as the dimensions of the matrix.
with⁡MTM:
S≔Matrix⁡7,4,0,0,2,0,0,0,6,storage=sparse
S≔740020006
full⁡S
740020006
M≔full⁡speye⁡4,5
M≔10000010000010000010
issparse⁡S
true
issparse⁡M
false
The MTM[full] and MTM[issparse] commands were introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
MTM[eye]
rtable_options
Download Help Document