Is there any way to demote a statically typed matrix or vector to a standard matrix or vector (or to a List, which I could then build a regular Matrix/Vector from)?
I believe I should be able to do this using LA.toList since R n is an instance of Numeric.LinearAlgebra.Vector, but I'm getting type errors.
Hi,
Is there any way to demote a statically typed matrix or vector to a standard matrix or vector (or to a List, which I could then build a regular Matrix/Vector from)?
I believe I should be able to do this using
LA.toList
sinceR n
is an instance ofNumeric.LinearAlgebra.Vector
, but I'm getting type errors.