-
Notifications
You must be signed in to change notification settings - Fork 0
/
assign.h
60 lines (38 loc) · 2.59 KB
/
assign.h
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
void Vector_Entries_into_Parameter_Table ( const gsl_vector * X, Parameter_Table * P,
int * Parameter_Index, int No_of_PARAMETERS );
void Vector_Entries_into_Parameter_Table_Initial_Condition ( const gsl_vector * X,
Parameter_Table * P,
int * Index,
int No_of_PARAMETERS,
int No_of_IC);
void AssignVectorEntry_to_Structure(Parameter_Table * P, int j, double value);
void Parameter_Table_into_Vector_Entries ( Parameter_Table * P, gsl_vector * X,
int * Parameter_Index, int No_of_PARAMETERS );
void Parameter_Table_into_Vector_Entries_Initial_Condition ( Parameter_Table * P, gsl_vector * X,
int * Index,
int No_of_PARAMETERS,
int No_of_IC);
double AssignStructValue_to_VectorEntry(int j, Parameter_Table * P);
void AssignCodes_to_Model_Parameters(int j, char * Label, Parameter_Table *P);
void AssignLabel_to_Model_Parameters(int j, char * Label, Parameter_Table *P);
void Label_to_Model_Parameters(int j, char * Label, Parameter_Table *P);
void AssignSymbol_to_Model_Parameters(int j, char * Label, Parameter_Table *P);
void Symbol_to_Model_Parameters(int j, char * Label, Parameter_Table * P);
void AssignCPGPLOT_Symbol_to_Model_Parameters(int j, char * Label, Parameter_Table *P);
void CPGPLOT_Symbol_to_Model_Parameters(int j, char * Label, Parameter_Table * P);
void AssignLabel_to_Model_Parameters__LATEX(int j, char * Label, Parameter_Table *P);
void Label_to_Model_Parameters__LATEX(int j, char * Label, Parameter_Table *P);
void AssignLabel_to_Model_Parameters__LATEX__SYMBOL(int j, char * Label, Parameter_Table *P);
void Label_to_Model_Parameters__LATEX__SYMBOL(int j, char * Label, Parameter_Table *P);
void AssignLabel_to_Model_Variables(int j, char * Label, Parameter_Table *P);
void AssignLabel_to_Output_Variables(int j, char * Label, Parameter_Table * P);
void AssignLongLabel_to_Output_Variables(int j, char * Label, Parameter_Table * P);
void AssignCPGPLOT_Symbol_to_Output_Variables(int j, char * Label, Parameter_Table * P);
void AssignSymbol_to_Model_Variables(int j, char * Label, Parameter_Table *P);
void AssignSymbol_to_Output_Variables(int j, char * Label, Parameter_Table * P);
void Vector_Entry_into_Model_Variable_Initial_Condition_Table(double Value,
int j, Parameter_Table * P);
void Vector_Entry_into_Model_Variable_Initial_Condition_Model(double Value,
int j, Parameter_Model * P);
double Model_Variable_Initial_Condition_into_Vector_Entry_Table(int j, Parameter_Table * P);
double Model_Variable_Initial_Condition_into_Vector_Entry_Model(int j, Parameter_Model * P);