https://github.com/nowisesys/libchemgps
Generic library for making predictions using Simca-QP. Use this library to write standalone and client/server applications for SIMCA-QP.
https://github.com/nowisesys/libchemgps
mathematical-modelling mva pca
Last synced: about 1 month ago
JSON representation
Generic library for making predictions using Simca-QP. Use this library to write standalone and client/server applications for SIMCA-QP.
- Host: GitHub
- URL: https://github.com/nowisesys/libchemgps
- Owner: nowisesys
- License: gpl-2.0
- Created: 2019-01-28T17:21:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-28T19:10:42.000Z (over 6 years ago)
- Last Synced: 2025-02-16T08:27:29.873Z (3 months ago)
- Topics: mathematical-modelling, mva, pca
- Language: C
- Size: 932 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
*** ABOUT LIBCHEMGPS ***
** GENERAL:
The libchemgps library is a generic library for making predictions using
SIMCA-QP. Use this library to write standalone and client/server
applications for SIMCA-QP. The chemgps-sqp2 package contains both a fully
functional standalone application as well as an client/server solution.
You need a separate license from Umetrics (http://www.umetrics.com) for
using this library.** BUILD:
Configure and build with (64-bit Linux):
bash$> CC="gcc32" CFLAGS="-Wall -O -g -m32" ./configure
bash$> makeSee docs/README.compiler for build notes.
** USAGE:See the manual page and the chemgps-sqp2 package for example code.
In short, define callbacks and initilize an cgps_options structure.
Call cgps_project_load() to load the project.
For each prediction call cgps_predict_init() and cgps_predict() to
make the prediction.
Get the result of prediction using cgps_result_init() and cgps_result().
Cleanup and after each prediction by calling cgps_predict_cleanup() and
cgps_result_cleanup().
Unload the project by calling cgps_project_close().
Anders Lövgren, 2008-03-31