geometrex v0.1.1 Vector

Link to this section Summary

Functions

Examples

iex> Numex.add([[1, 2], [3, 4]], [[5, 6], [7, 8]]) [[6,8],[10,12]]

Link to this section Types

Link to this type vector()
vector() :: %Vector{x: list(), y: list()}
Link to this type vector(x, y)
vector(x, y) :: %Vector{x: x, y: y}

Link to this section Functions

Link to this function new(data)
new(list()) :: vector()

## Examples iex> Numex.add([[1, 2], [3, 4]], [[5, 6], [7, 8]]) [[6,8],[10,12]]