DeepLearning
IdentityMatrix
create a constant Tensor
Calling Sequence
Parameters
Options
Description
Details
Examples
Compatibility
IdentityMatrix(m,opts)
IdentityMatrix(m,n,opts)
m
-
non-negative integer; number of rows
n
non-negative integer; number of columns
opts
zero or more options as specified below
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.
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](..).
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.
with⁡DeepLearning:
Add an IdentityMatrix tensor and check its shape.
id≔IdentityMatrix⁡4,3,datatype=float8
id≔DeepLearning TensorShape: [4, 3]Data Type: float[8]
Shape⁡id
4,3
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
Download Help Document