ArrayTools
MultiplyAlongDimension
Calling Sequence
Parameters
Description
Examples
MultiplyAlongDimension(M)
MultiplyAlongDimension(M, dim)
M
-
Matrix, Vector, or Array
dim
(optional) dimension in which to multiply the elements
The MultiplyAlongDimension command multiplies together the elements in dimension dim of a N-dimensional Array to produce an Array with (N-1) dimensions.
When dim is not specified, the first non-singleton dimension is used for multiplying. If the dimension specified is a higher dimension than the number of dimensions in the input, the input itself is returned.
If MultiplyAlongDimension is applied to a Vector, a constant is returned.
This function is part of the ArrayTools package, so it can be used in the short form MultiplyAlongDimension(..) only after executing the command with(ArrayTools. However, it can always be accessed through the long form of the command by using ArrayTools[MultiplyAlongDimension](..).
with⁡ArrayTools:
M≔Matrix⁡a,b,c,d,e,f
M≔abcdef
MultiplyAlongDimension⁡M,1
a⁢db⁢ec⁢f
MultiplyAlongDimension⁡M,2
a⁢b⁢cd⁢e⁢f
v≔Vector⁡1,2,3,4
v≔1234
MultiplyAlongDimension⁡v
24
See Also
ArrayTools[AddAlongDimension]
Download Help Document