ivory4 wrote:
I mean by clicking DATA- Show SERIES WINDOW, all fc(i) from 1 to 1000 are there. If i is big, it takes time to show the SERIES WINDOW. I was wondering if I am recording the series in a cumbersome way.
It doesn't really matter how you create them--a thousand series are a thousand series, whether you have a thousand individual series or a vector of series.
ivory4 wrote:
com a 1 10 =%ran(1)
com f = a~a
disp f(1,1)
I think it works, but it creates rect[MATRIX]?because I need to use DISPLAY
Thanks for the rest of answers.
That won't work as written--you would use SET, not COMPUTE, to create A. If you do:
set a 1 10 =%ran(1)
com f = a~a
disp f(1,1)
F will be an ordinary rectangular array of
reals, not a rectangular array of
series.
Do you just need to use DISPLAY to view the values of the series? If so, you can apply it directly to entries of the series. For example:
display a(1)
Regards,
Tom Maycock