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
 baseline

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
pink-lisa Posted - 08/23/2007 : 09:18:20 AM
Origin Version (7
Operating System:windows xp
Hello, I have data from two different worksheets, each worksheet containing many xy data.
I want to compare the spectra, hence, I need each spectra to have a zero baseline.
How can I do this?
cheers
Lisa
x
3   L A T E S T    R E P L I E S    (Newest First)
Mike Buess Posted - 08/24/2007 : 08:07:20 AM
Is there a data point at y=0? Data selector only goes where there are data.

Mike Buess
Origin WebRing Member
pink-lisa Posted - 08/24/2007 : 07:51:16 AM
Hi Mike, when I click on the data selector tool I can't seem to drag them to the y=0 position.

Mike Buess Posted - 08/23/2007 : 10:47:53 AM
Hi Lisa,

If you expect a simple DC baseline that can be established from the same region in all curves then plot all curves and mark the baseline region with the Data Selector tool. Then run the following LabTalk script...

i1=mks1; // start of baseline region
i2=mks2; // end of baseline region
type -a baseline points: $(i1) ---> $(i2);
mks1=-1; // hide baseline markers
layer -c; // get list of dataplots
loop(ii,1,count) {
%A=%($(ii),@D);
set %A -b i1;
set %A -e i2;
sum(%A);
set %A -b 1;
set %A -e i3;
%A -= sum.mean;
};

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 08/23/2007 10:50:19 AM

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