-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionsInit.h
More file actions
33 lines (26 loc) · 761 Bytes
/
FunctionsInit.h
File metadata and controls
33 lines (26 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Created by Samuel Prevost on 19/12/2019.
//
#ifndef NEWTONMULTIVAR_FUNCTIONSINIT_H
#define NEWTONMULTIVAR_FUNCTIONSINIT_H
#include <stdlib.h>
#include <math.h>
#include "Vector.h"
#include "Function.h"
#define FUNCOUNT 2
Function* getAllFunctions();
Vector* f1(const Vector* v);
Vector* f1_dx(const Vector* v);
Vector* f1_dy(const Vector* v);
Vector* f1_dxdx(const Vector* v);
Vector* f1_dydy(const Vector* v);
Vector* f1_dxdy(const Vector* v);
Vector* f1_dydx(const Vector* v);
Vector* f2(const Vector* v);
Vector* f2_dx(const Vector* v);
Vector* f2_dy(const Vector* v);
Vector* f2_dxdx(const Vector* v);
Vector* f2_dydy(const Vector* v);
Vector* f2_dxdy(const Vector* v);
Vector* f2_dydx(const Vector* v);
#endif //NEWTONMULTIVAR_FUNCTIONSINIT_H