Chi2fit.Matrix.add
You're seeing just the function
add
, go back to Chi2fit.Matrix module for more information.
Specs
Adds two vectors.
Examples
iex> add [1,2], [3,4]
[4,6]
iex> add [], []
[]
iex> add [1], [5]
[6]