Coerce a clifford vector to a numeric vector
vector.Rd
Given a clifford object with all terms of grade 1, return the corresponding numeric vector
Note
The awkward R idiom of this function is because the terms may be stored in any order; see the examples
Examples
x <- clifford(list(6,2,9),1:3)
as.vector(x)
#> [1] 0 2 0 0 0 1 0 0 3
as.1vector(as.vector(x)) == x # should be TRUE
#> [1] TRUE