Hi Leviasa,
I have tried to define a simple function which contains a summation:
y = ∑{ii=1 to x}(A*ii)
with the following function (Function Type = Origin C) :double tmp=0;
int ii;
for(ii=1; ii<x; ii++) {
tmp=tmp+A*(x+ii);
}
y=tmp;
This worked as follows:
Does this help?
--Hideo Fujii
OriginLab