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
 Origin Forum
 Help about errors

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
tsitos45 Posted - 03/25/2012 : 6:26:08 PM
Origin Ver. and Service Release (Select Help-->About Origin):
Operating System:
Greedings,

In one of my projects I inserted the values of x,y and error y. I have got to make a diagram of x- lny, so I have make a new column and set it as lny. What I have to do with the error in the new column? Set a new column as error y and then set as ln(error y) or is anything else?

Thank you
1   L A T E S T    R E P L I E S    (Newest First)
easwar Posted - 03/26/2012 : 10:11:31 AM
Hi,

You should use error propagation formula to calculate the error of the transformed y:


f(y)=ln(y)
df/dy = (d/dy)*ln(y)*delta_y
      = (1/y)*delta_y


So if your original y and delta_y are in cols B and C, add two new columns D and E, and set them as follows:


col(d)=ln(col(b));
col(e)=(1/col(b))*col(c);


To verify this, you can transform backwards:


g(y)=exp(y)
dg/dy = (d/dy)exp(y) * delta_y
      = exp(y) * delta_y


Add two more columns F and G, and set them as below:


col(f)=exp(col(d));
col(g)=exp(col(d)) * col(e);

and this should give you back your original y and dy

Easwar
OriginLab


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