as.vector {clifford} | R Documentation |
Given a clifford object with all terms of grade 1, return the corresponding numeric vector
## S3 method for class 'clifford'
as.vector(x,mode = "any")
x |
Object of class clifford |
mode |
ignored |
The awkward R idiom of this function is because the terms may be stored in any order; see the examples
Robin K. S. Hankin
x <- clifford(list(6,2,9),1:3)
as.vector(x)
as.1vector(as.vector(x)) == x # should be TRUE