Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nowisesys/chemgps-sqp2
The chemgps-sqp2 package contains a daemon, client and standalone program for making predictions using Umetrics Simca-QP. The programs is based on the libchemgps library.
https://github.com/nowisesys/chemgps-sqp2
mathematical-modelling mva pca
Last synced: 1 day ago
JSON representation
The chemgps-sqp2 package contains a daemon, client and standalone program for making predictions using Umetrics Simca-QP. The programs is based on the libchemgps library.
- Host: GitHub
- URL: https://github.com/nowisesys/chemgps-sqp2
- Owner: nowisesys
- License: gpl-2.0
- Created: 2019-01-28T16:11:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-28T19:14:10.000Z (almost 6 years ago)
- Last Synced: 2023-10-26T10:41:06.828Z (about 1 year ago)
- Topics: mathematical-modelling, mva, pca
- Language: C
- Size: 1.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
*** ABOUT CHEMGPS-SQP2 ***
** GENERAL:
The chemgps-sqp2 package contains a daemon, client and standalone program
for making predictions using Umetrics SIMCA-QP. The programs is based on
the libchemgps library (should be installed before trying to build this
package).
The cgpsclt/cgpsd works together and provides a client/server solution.
Communication is done using local (UNIX socket) and networks (TCP socket)
connections.
The cgpsstd (standalone) binary is considered to be a test tool. Use the
client/server solution for production systems.
** PROGRAMS:cgpsclt:
The ChemGPS client. Sends prediction requests to cgpsd. This application
can be built without dependencies on libchemgps (and Simca QP) by enable
the --enable-foreign option for the configure script.cgpsd:
The ChemGPS daemon. Answer prediction requests from cgpsclt. The daemon
is multithreaded and implements a variant of the boss/worker model
used by i.e. HTTP-servers.cgpsstd:
The ChemGPS standalone program. Works without chemgpsd or cgpsclt.
This program function as chemgps-sqp (the old standalone program),
but uses libchemgps for its functionality.
** BUILD:Configure and build (release version for 64-bit Linux):
bash$> CC="gcc32" CFLAGS="-Wall -O2 -m32" ./configure
bash$> make
Configure and build (develop version for 64-bit Linux):
bash$> CC="gcc32" CFLAGS="-Wall -Werror -O -g -m32" ./configure
bash$> make
See docs/README.compiler for build notes.
Anders, 2008-03-31