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

Online Help

All Products    Maple    MapleSim


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

Calling Sequence

Determinant(x,opts)

MatrixInverse(x,opts)

Norm(x,ord,opts)

Trace(x,opts)

Transpose(x,opts)

Parameters

x

-

Tensor

ord

-

(optional) a positive real number, infinity, or Frobenius, the norm to use

opts

-

zero or more options as specified below

Options

• 

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.

Description

• 

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.

Examples

withDeepLearning:

MLinearAlgebra:-VandermondeMatrix3.,5.,7.

M1.03.9.1.05.25.1.07.49.

(1)

tConstantM

tDeepLearning TensorShape: [3, 3]Data Type: float[8]

(2)

detDeterminantt

detDeepLearning TensorShape: []Data Type: float[8]

(3)

trTracet

trDeepLearning TensorShape: []Data Type: float[8]

(4)

Normt,2

DeepLearning TensorShape: []Data Type: float[8]

(5)

Normt,

DeepLearning TensorShape: []Data Type: float[8]

(6)

Compatibility

• 

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]

Tensor