The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum for Programming
 Forum for Origin C
 NLSF dataset/vector
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

pegor

Germany
Posts

Posted - 03/05/2005 :  06:13:05 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
Origin Version (Select Help-->About Origin): 7.5SR4
Operating System:Win XP

Hi All,

I am fitting some curves using NLSF in Origin C.
In fitting the data im using error bars as an arbitrary dataset, so i have to supply a dataset which contain the error bars. for example:

Worksheet wks;
wks.Create();
Dataset Err(wks,0);
and then use :
NLSF.W$ = Err.GetName();

but i want to use instead of a dataset a vector, i.e :

double Err[100];
NLSF.W$ = Err.GetName();

because i dont want to create a dataset.
but if i do so im getting an error massage that says:Member's access requires struct/class type.

what shall i do?
Thanks a lot.
Pegor

Mike Buess

USA
3037 Posts

Posted - 03/05/2005 :  08:19:37 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
Hi Pegor,

According to nlsf documentation nlsf.w$ must refer to an existing wks column. However, you can use a temporary wks (will be destroyed automatically on completion) like this...

Worksheet wks;
wks.Create("Origin.otw", CREATE_TEMP);
Dataset Err(wks,0);
and then use :
NLSF.W$ = Err.GetName();



Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 03/05/2005 08:21:01 AM
Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000