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
 Is there a template to decide glass transition T?

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
flirt Posted - 06/07/2005 : 09:50:49 AM
and other critical values on a curve like start time, temperature etc?
How to draw a tangential curve?
Thanks.
2   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 06/09/2005 : 1:43:43 PM
The File Exchange now has a simple tangent add-on for Origin 7.5...

http://www.originlab.com/fileexchange/details.aspx?fid=106

Mike Buess
Origin WebRing Member
Mike Buess Posted - 06/07/2005 : 12:44:56 PM
If your X values are evenly spaced you can used LabTalk's derivative function to draw your tangent. The following example assumes your worksheet is A(X), B(Y). Create col C(Y) to hold the tangent line and plot C in the same layer as B. If you want more than one tangent line you'll need a column for each.

kk=100; // draw tangent through point 100
yy0=col(B)[kk]; // y value at that point
tmp=col(B); // create a temporary dataset from col B
deriv tmp; // differentiate
col(C)=0/0; // clear col C
loop (ii,kk-10,kk+10) {
col(C)[ii]=yy0+(ii-kk)*tmp[kk]; // create 10 points on either side of point kk
};
del tmp; // delete temporary dataset

That won't work if your X values are unevenly spaced. In that case Origin C's Curve_derivative function might work. (I haven't tried.)

...Of course the temporary dataset (tmp) holds the derivatives at each point, which might be what you really need.

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 06/07/2005 12:47:37 PM

Edited by - Mike Buess on 06/07/2005 12:49:05 PM

Edited by - Mike Buess on 06/07/2005 12:52:18 PM

Edited by - Mike Buess on 06/07/2005 3:24:08 PM

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