PURPOSE
This app includes some shared functions, classes and dll files, which can be used in other apps.
INSTALLATION
If an app's Require Packages key includes this app, orgutils app will be installed automatically when that app is installed, and orgutils app will be not shown in Apps Gallery window.
NOTE: This tool requires OriginPro.
OPERATION
If an app need call functions in orgutils app, in a higher version of Origin you can set orgutils to Require Packages key when you generate the app.

And in the app's code file, include orgutils app's header file.
#include "..\orgutils\GIMUtils.h"
Then you can call shared functions, classes or dll files in the app.
///---Call shared function
double aic, bic;
orgutil_cal_aicc_bic( nn, p, rss, aic, bic, true );
///---Call GeneralIndepModel class
GeneralIndepModel lrDataParser;
///---Call dll dailog
string strSrc strModel;
GeneralIndepModelDialog dlgModel(strSrc, strModel);
Related Apps
- General Linear Regression
- Gage Study
- Logistic Regression
- Design of Experiments
- Best Subset Selection