Matrix t -> (Int, Int) -> t +hmatrix
Reads a matrix position.
Extracts a submatrix from a matrix.
Creates a real vector containing a range of values:
> > linspace 5 (-3,7)
> 5 |> [-3.0,-0.5,2.0,4.5,7.0]
Logarithmic spacing can be defined as follows:
> logspace n (a,b) = 10 ** linspace n (a,b)