summaryrefslogtreecommitdiff
path: root/lalge/src/types.nim
blob: 321042aae57a3e774b71c1380a7fb12b71eef61e (plain) (blame)
1
2
3
4
5
6
7
8
type
  # Any generic Vector is assumed to be a column vector.
  Vector* = seq[float]
  RowVector* = Vector # can this be distinct?
  Matrix* = seq[RowVector]

type
  Radian* = float