Origin Version (Select Help-->About Origin): 7.5 Operating System: Win XP
Hi All! I have a little annoying problem with integreation process here. When I try to integrate the 2D Gaussian shape curve of my spectrum, a new graph window with s shaped curve pops up after each integration and the name of this pop-up graph is IntegPlot1. This may seem negligible issue for once or twice integrations, but for continuous integration of many spectra this is really annoying. I could not find any cure for this problem from Menu/Tools/Options or other places. I would be really greatful to get any response from anyone who had already encountered this and found a way TO GET RID OFF IT! Thanks in advance, Fathulla.
You merely want to avoid the integral plot? The following script runs Analysis > Calculus > Integrate (see this tip for details) and then deletes the active window (which will be integral plot) afterwards. Assign the script to the Custom Routine button as described here.
run.section(GRANALY,Integrate); // integrate win -c %H; // close active window
...If you prefer to minimize the integral plot rather than closing it use win -i in place of win -c %H.