CrossProduct - 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/CrossProduct

compute cross product of Tensors

DeepLearning/Tensor/DotProduct

compute dot product of Tensors

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

CrossProduct(x,y,opts)

DotProduct(x,y,opts)

Parameters

x

-

Tensor

y

-

Tensor

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 CrossProduct(x,y,opts) command computes the cross product of two Tensor objects.

• 

The DotProduct(x,y,opts) command computes the dot product of two Tensor objects.

Examples

withDeepLearning:

v1Constant35.0,65.0,41.0

v1DeepLearning TensorShape: [3]Data Type: float[8]

(1)

v2Constant14.0,45.0,24.0

v2DeepLearning TensorShape: [3]Data Type: float[8]

(2)

CrossProductv1,v2

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

(3)

m1Constant92.1,31.3,67.3

m1DeepLearning TensorShape: [3, 1]Data Type: float[8]

(4)

m2Constant99.7|29.0|44.5

m2DeepLearning TensorShape: [1, 3]Data Type: float[8]

(5)

DotProductm1,m2

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

(6)

Compatibility

• 

The DeepLearning/Tensor/CrossProduct and DeepLearning/Tensor/DotProduct commands were introduced in Maple 2018.

• 

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

See Also

DeepLearning Overview

LinearAlgebra

Tensor