File Exchange > Data Analysis >    orgutils

Author:
OriginLab Technical Support
Date Added:
2/15/2025
Last Update:
6/26/2025
Downloads (90 Days):
289
Total Ratings:
0
File Size:
70 KB
Average Rating:
File Name:
orgutils.opx
File Version:
0.29
Minimum Versions:
License:
Free
Type:
App
Summary:

Provide shared functions for Origin apps.

Screen Shot and Video:
Description:

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

  1. General Linear Regression
  2. Gage Study
  3. Logistic Regression
  4. Design of Experiments
  5. Best Subset Selection

Updates:

v0.29 6/26/2025 Updated functions to improve prediction.
v0.28 6/24/2025 Updated localization.

Reviews and Comments:

Be the first to review this File Exchange submission.