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
 Non-linear regression on sum

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
MantaManni Posted - 08/29/2020 : 06:11:38 AM
OriginPro 2020 (64-bit) SR1
9.7.0.188 (Academic)

Hello together, I am trying to write a script in Origin C to perform non-linear regression analysis on this formula




This is what I got so far:

//
void _nlsfdiffusionsumresistance(
// Fit Parameter(s):
double Aeq, double D, double H,
// Independent Variable(s):
double x,
// Dependent Variable(s):
double& y)
{
const double n=50;
const double l=0.001;
// Beginning of editable part
double bb=0;
double R=l*H/D;

for(int ii =1; ii<=n; ii++);
if(R=ii*tan(ii)); while (ii>0)
{
bb = (2*R^2/ii^2*(ii^2+R^2+R))*exp(ii^2*D*x/l);
}

y = (1-bb)*Aeq;
// End of editable part

I am not very used to programming, so if someone could help, that would be awesome!

Thank you in advance
1   L A T E S T    R E P L I E S    (Newest First)
lkb0221 Posted - 09/02/2020 : 10:58:18 AM
Not really sure what do you mean in your for-if-while part.
Maybe you can send some details to their tech support <tech@originlab.com> asking for advanced help.

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