test.equal.tframe {tframe} | R Documentation |
Generic function to compare two time frames. The methods return a logical value, T if the time frames are the same type and value and F otherwise.
test.equal.tframe(tf1,tf2) test.equal.tframe(tf1,tf2) test.equal.tframe(tf1,tf2)
tf1, tf2 |
Time frames of the same class. |
Time frames are compared. Time frames need to be of the same class (although it would be nice if they did not need to be).
T or F.
test.equal.tframe(tframe(matrix(1:10,10,2)), tframe(array(1:10, c(10,2))))