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

Online Help

All Products    Maple    MapleSim


DeepLearning

  

IdentityMatrix

  

create a constant Tensor

 

Calling Sequence

Parameters

Options

Description

Details

Examples

Compatibility

Calling Sequence

IdentityMatrix(m,opts)

IdentityMatrix(m,n,opts)

Parameters

m

-

non-negative integer; number of rows

n

-

non-negative integer; number of columns

opts

-

zero or more options as specified below

Options

• 

datatype = one of integer[4],integer[8],float[4],float[8],complex[4], or complex[8]

  

The value of option datatype specifies the type of data this Tensor will hold. By default, the datatype is float[4].

• 

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 IdentityMatrix(c) command creates a Tensor in the active dataflow graph whose value is the m by n identity matrix.

• 

This function is part of the DeepLearning package, so it can be used in the short form IdentityMatrix(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[IdentityMatrix](..).

Details

• 

The implementation of EinsteinSummation uses the tf.eye command from the TensorFlow Python API. Consult the TensorFlow Python API documentation for tf.eye for more information.

Examples

withDeepLearning:

Add an IdentityMatrix tensor and check its shape.

idIdentityMatrix4,3,datatype=float8

idDeepLearning TensorShape: [4, 3]Data Type: float[8]

(1)

Shapeid

4,3

(2)

Compatibility

• 

The DeepLearning[IdentityMatrix] command was introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

See Also

DeepLearning Overview