Skip to content

MULT

Summary

Element-wise multiplication of two input series. Produces outReal[i] = inReal0[i] * inReal1[i].

Formula

outReal[i] = inReal0[i] * inReal1[i]

Inputs

  • inReal0 — First operand series
  • inReal1 — Second operand series

Outputs

  • outReal — Product of the two inputs at each index

Implementation

TA-Lib Definition: mult.c · mult.yaml

Native File
C ta_MULT.c
Rust mult.rs
Java Core.java

TA-Lib is also available for Python, R and more using a wrapper.

Aliases

Vector Multiply, Vector Arithmetic Mult, Element-wise Product

See Also

ADD · SUB · DIV