Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
fatkhulla
Posted - 02/01/2007 : 3:13:27 PM Origin Version (Select Help-->About Origin): Origin 7.5 SR6 Operating System: Windows XP SP2
I need to find the way to stop auto IntegPlot generation that is created AUTOMATICALLY when area of a peak is integrated (Menu: analysis/calculus/integrate). I tried to fimd from Menu/options... but no positive result.
Beleive me this is really annoing especially when you do tons of integrations per day. I should fix this before I commit a suicide... so please help me if you dont want to loose one of the forum members.
thanks in advance for any hopeful comments...
Edited by - fatkhulla on 02/01/2007 3:21:29 PM
Edited by - fatkhulla on 02/01/2007 3:22:09 PM
1 L A T E S T R E P L I E S (Newest First)
Mike Buess
Posted - 02/01/2007 : 3:38:40 PM So you want to disable everything but the Result Log report? There's no option for doing that with the Analysis > Calculus > Integrate command but you can assign the LabTalk script below to the Custom Routine button like this.
#Integrate %C (from zero) %A=%C; integ %C; if (MkS1>=0) { i1=MkS1; i2=MkS2; } else { get %C -b i1; get %C -e i2; } SaveRedirection=type.Redirection(16,3); type.BeginResults(); ty $granaly.IntegFromZero; ty "i = $(i1) --> $(i2)"; ty "x = $(integ.x1) --> $(integ.x2)"; ty "Area Peak at Width Height"; separator 4; ty "$(integ.area) $(integ.x0) $(integ.dx) $(integ.y0)"; type.EndResults(); type.Redirection=SaveRedirection; // restore previous redirection. delete -v SaveRedirection;