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
 All Forums
 Origin Forum for Programming
 Forum for Origin C
 Origin C curve fitting

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
pegor Posted - 02/22/2005 : 06:42:47 AM
Origin Version (Select Help-->About Origin): 7.5 SR4
Operating System:win xp

Hi,

I am fitting a number of curves in Origin C with the following:

using NLSF = LabTalk.NLSF;
NLSF.Init();
NLSF.Func$ = "user6";
NLSF.v1 = 1;
NLSF.v2 = 1;
NLSF.v3 = 1;
NLSF.v4 = 0;
NLSF.FitData$ = crvData.GetName();
NLSF.Execute("parainit");
NLSF.Wtype = 1;
NLSF.W$ = dsErr.GetName();
NLSF.ChiSqrErr = 0;
NLSF.Fit(100);
NLSF.Fit(100);
NLSF.Fit(100);
NLSF.PasteParams("P");
NLSF.End();

In this function (user6) there are 4 parameters,the last one has to be fixed.the command to fix this last parameter is NLSF.v4 = 0;.
My question is how shall i give the value of this fixed parameter?

Thanks for your help.

Pegor.
1   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 02/22/2005 : 08:19:30 AM
Hi Pegor,

NLSF.p4 = 0; // set value of parameter 4 to zero

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 02/22/2005 08:20:49 AM

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000