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
 Getting rid off the IntegPlot

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
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;

Mike Buess
Origin WebRing Member

Edited by - Mike Buess on 02/01/2007 3:40:02 PM

Edited by - Mike Buess on 02/01/2007 3:48:16 PM

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