Navigation

Operators and Keywords

Function List:

C++ API

: times (x, y)
: times (x1, x2, …)

Return the element-by-element multiplication product of inputs.

This function and x .* y are equivalent. If more arguments are given, the multiplication is applied cumulatively from left to right:

(…((x1 .* x2) .* x3) .* …)

At least one argument is required.

See also: mtimes, rdivide.

Package: octave