I have a little and probably trivial problem at hand right now while programming in Origin C but I didn't find anything usefull via google... I want to convert a column from my worksheet into a vector for different calculation steps and also I have to convert some vectors so I can export them as ascii files. Lets say I have a worksheet like this:
1299,9001 175156,7021
1300,2001 175431,5957
1300,5001 175704,2139
1300,8001 175970,9028
1301,1001 176228,0081
1301,4001 176471,8757
1301,7001 176699,8998
1302,0001 176917,9282
1302,3001 177135,8932
1302,6001 177363,7539
... and then want to convert the second column into a vector. The solution will probably be easy as pie but since I'm completely new to Origin and Google didn't want to help me, I'm relying on this community.
Edit: @Thomas Origin didn't seem to like this kind of code (it's not C++ but they are pretty alike). I half-solved this problem today... meaning it's almost working as planned but I get a command error everytime I'm running the programm, telling me that a vectorelement-index is above the upper limit (Origin C error 24). It doesn't tell me where exactly the error occurs though but I think it's at this little function
for (int i=0; i<=2*n; ++i)
{
if ((i==0) || (i==2*n))
sum0=column[a+i*h];
if (i%2==1)
sum1=column[a+i*h];
if ((i%2==0) && (i!=2*n))
sum2=column[a+i*h];
vsimpson[i]=(h/3)*(sum0+4*sum1+2*sum2);
}
2nd Edit: deleted the first part of my function since the editor wouldn't format it right.
Solution: I've rewritten the whole program in C#...
Try it on this way (you can tune the parameters):
or:
For more about:
Origin C: column constructor,
Origin C: dataset constructor,
Origin C: vector constructor