DeepLearning,Tensor,Determinant
compute determinant of a Tensor
DeepLearning,Tensor,MatrixInverse
compute matrix inverse of a Tensor
DeepLearning,Tensor,Norm
compute norm of a Tensor
DeepLearning,Tensor,Trace
compute trace of a Tensor
DeepLearning,Tensor,Transpose
compute transpose of a Tensor
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Determinant(x,opts)
MatrixInverse(x,opts)
Norm(x,ord,opts)
Trace(x,opts)
Transpose(x,opts)
x
-
Tensor
ord
(optional) a positive real number, infinity, or Frobenius, the norm to use
opts
zero or more options as specified below
name=string
The value of option name specifies an optional name for this Tensor, to be displayed in output and when visualizing the dataflow graph.
The Determinant(x,opts) command computes the Determinant of the Tensor x.
The MatrixInverse(x,opts) command computes the matrix inverse of x.
The Norm(x,ord,opts) command computes the norm of x using norm ord.
The Trace(x,opts) command computes the trace of the Tensor x.
The Transpose(x,opts) command computes the transpose of the Tensor x.
with⁡DeepLearning:
M≔LinearAlgebra:-VandermondeMatrix⁡3.,5.,7.
M≔1.03.9.1.05.25.1.07.49.
t≔Constant⁡M
t≔DeepLearning TensorShape: [3, 3]Data Type: float[8]
det≔Determinant⁡t
det≔DeepLearning TensorShape: []Data Type: float[8]
tr≔Trace⁡t
tr≔DeepLearning TensorShape: []Data Type: float[8]
Norm⁡t,2
DeepLearning TensorShape: []Data Type: float[8]
Norm⁡t,∞
The DeepLearning,Tensor,Determinant, DeepLearning,Tensor,MatrixInverse, DeepLearning,Tensor,Norm, DeepLearning,Tensor,Trace and DeepLearning,Tensor,Transpose commands were introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
DeepLearning Overview
LinearAlgebra
LinearAlgebra[Determinant]
LinearAlgebra[Norm]
LinearAlgebra[Trace]
LinearAlgebra[Transpose]
Download Help Document