Skip to content

ADD

Summary

Vector arithmetic addition. Outputs the element-wise sum of two input series.

Formula

outReal[i] = inReal0[i] + inReal1[i]

Inputs

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

Outputs

  • outReal — Element-wise sum of the two inputs

Implementation

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

Native File
C ta_ADD.c
Rust add.rs
Java Core.java

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

Aliases

Vector Add, Vector Arithmetic Add

See Also

SUB · MULT · DIV