I\'m trying to populate a set of matrices where the matrix (object) names are held in a list. I can use the get() to return the object with the given name, but I\'m running
Use function assign instead of get:
assign
get
assign(list.names[1],c(1,2,3,4))
get returns an object's value, assign assigns. :)
Same thing with eval, it just evaluates your call.
eval