I have a new empty worksheet with, let's say, two columns, Data1_a and Data1_b. I fill Data1_a with 100 values, from 1 to 100, and then the worksheet ends. If I commandget Data1_a -e e; // gets the end row of the dataset
type e;
I receive "100" in response. So everything is OK up to here. But now I command,
aa=-100;
bb=0.02;
Data1_b=10^(aa+bb*Data1_a);
and the result is calculated until item 3768! New rows are created in my worksheet, with value 0/0 for index>100, but it takes its time in any case! I don't see what is making this happend, so please send me any clue.
Thanks,
jose.
(I imagine that it has to do with some mixing of vector and scalar notations, as if I replace "aa" and "bb" with their numerical values in the asignment expression, things work, but I don't know how to do it with variables...)
[This message has been edited by Jose (edited 07-19-2000).]