|
TPCCLIB
|
#include <tpcnlopt.h>
Data Fields | |
| unsigned int | n |
| double * | x |
| double * | y |
| double * | w |
| double * | sy |
| int | verbose |
| FILE * | fp |
Basic structure for data passed on to objective function via NLOPT structure. Actual implementations usually require more data, and instead of this structure, a dedicated local data structure should be created and used.
Definition at line 65 of file tpcnlopt.h.
| FILE* NLOPT_DATA::fp |
Pointer to verbose output; usually stdout. Must be set if verbose>0.
Definition at line 79 of file tpcnlopt.h.
Referenced by nloptdataInit().
| unsigned int NLOPT_DATA::n |
| double* NLOPT_DATA::sy |
Pointer to fitted/simulated sample values.
Definition at line 75 of file tpcnlopt.h.
Referenced by nloptdataInit().
| int NLOPT_DATA::verbose |
| double* NLOPT_DATA::w |
Pointer to an array of weights.
Definition at line 73 of file tpcnlopt.h.
Referenced by nloptdataInit().
| double* NLOPT_DATA::x |
Pointer to an array of sample times.
Definition at line 69 of file tpcnlopt.h.
Referenced by nloptdataInit().
| double* NLOPT_DATA::y |
Pointer to an array of sample values.
Definition at line 71 of file tpcnlopt.h.
Referenced by nloptdataInit().