Displaying 1 result from an estimated 1 matches for "trackmulticurv".
Did you mean:
trackmulticurve
2005 Nov 22
1
failure in `setClass' examples
...ss("track",
+ representation(x="numeric", y="numeric"))
[1] "track"
R> setClass("trackCurve",
+ representation("track", smooth = "numeric"))
[1] "trackCurve"
R> setClass("trackMultiCurve",
+ representation(x="numeric", y="matrix", smooth="matrix"),
+ prototype = list(x=numeric(), y=matrix(0,0,0),
+ smooth= matrix(0,0,0)))
[1] "trackMultiCurve"
R> try(setIs("trackMul...