DeepLearning,Tensor,Maximum
compute the pairwise maximum of two Tensors
DeepLearning,Tensor,Minimum
compute the pairwise minimum of two Tensors
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Maximum(x,y,opts)
Minimum(x,y,opts)
x
-
Tensor
y
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 Maximum(x,y,opts) command computes the pairwise maximum of Tensor objects x and y.
The Minimum(x,y,opts) command computes the pairwise minimum of Tensor objects x and y.
with⁡DeepLearning:
t1≔Constant⁡11.0,18.3,12.1,20.3,datatype=float8
t1≔DeepLearning TensorShape: [2, 2]Data Type: float[8]
t2≔Constant⁡29.0,−5.7,15.3,4.5,datatype=float8
t2≔DeepLearning TensorShape: [2, 2]Data Type: float[8]
Maximum⁡t1,t2
DeepLearning TensorShape: [2, 2]Data Type: float[8]
Minimum⁡t1,t2
The DeepLearning,Tensor,Maximum and DeepLearning,Tensor,Minimum commands were introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
DeepLearning Overview
Download Help Document