Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2929_PrioritizedGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.PGE/3.3/levmar/src/go-levmar/stack.h @ 16666

Last change on this file since 16666 was 16666, checked in by hmaislin, 5 years ago

#2929: Modified make / folder structure to build original app, added x86 dll

File size: 431 bytes
Line 
1#ifndef PGE_STACK_H
2#define PGE_STACK_H
3
4
5typedef struct {
6  int *serial;
7  int  s_len;
8} StackExpr;
9
10typedef struct {
11  int  x_len;
12  int  x_dim;
13  double *x_data;  // dim 0 == time
14
15  StackExpr  expr;
16  StackExpr *derivs;
17  int  d_len;
18} StackData;
19
20
21void stack_levmar_der(double* ygiven, double* p, int m, int n, void* data );
22void stack_levmar_dif(double* ygiven, double* p, int m, int n, void* data );
23
24
25#endif
Note: See TracBrowser for help on using the repository browser.