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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
# -------------------------------------------------
# predefined function for ode, optim and others...
# just put here the list of 'names' that
# is used as argument functions for ode, optim, ...
# For example if you use
# -->ode(y0,t0,t1,'fex')
# the name of the argument function 'fex' must be
# in the fydot_list list below
#
# You must also provide the associated code
# in the file Ex-ode.f
# --------------------------------------------------
# -------------------------------------------------
# predefined function(s) for ode
# --------------------------------------------------
fydot_list=fex fex2 fex3 fexab loren arnol bcomp lcomp
fjac_list=jex
# -------------------------------------------------
# predefined function(s) for optim
# --------------------------------------------------
foptim_list=genros topt2 icsemc
# -------------------------------------------------
# predefined function(s) for intg
# --------------------------------------------------
fintg_list=intgex
# -------------------------------------------------
# predefined function(s) for int2d
# --------------------------------------------------
fint2d_list=int2dex
# -------------------------------------------------
# predefined function(s) for int3d
# --------------------------------------------------
fint3d_list=int3dex
# -------------------------------------------------
# predefined function(s) for fsolve
# --------------------------------------------------
fsolvf_list= fsol1
fsolvj_list= fsolj1
# -------------------------------------------------
# predefined function(s) for lsqrsolve
# --------------------------------------------------
lsqrsolvf_list= lsqrsol1
lsqrsolvj_list= lsqrsolj1
# -------------------------------------------------
# predefined function(s) for schur
# --------------------------------------------------
fschur_list=folhp find
# -------------------------------------------------
# predefined function(s) for schur
# --------------------------------------------------
schsel_list=sb02mv sb02mw
# -------------------------------------------------
# predefined function(s) for schur
# --------------------------------------------------
zchsel_list=zb02mv zb02mw
# -------------------------------------------------
# predefined function(s) for gschur
# --------------------------------------------------
gshsel_list=sb02ow sb02ox
# -------------------------------------------------
# predefined function(s) for gschur
# --------------------------------------------------
gzhsel_list=zb02ow zb02ox
# -------------------------------------------------
# predefined function(s) for odedc
# uses also fjac and fsurf
# --------------------------------------------------
fydot2_list= fexcd fcd fcd1 phis phit
# -------------------------------------------------
# predefined function(s) for dassl
# --------------------------------------------------
fresd_list= dres1 dres2 res1 res2
fjacd_list= djac1 djac2 jac2
fsurfd_list= gr1 gr2
# -------------------------------------------------
# predefined function(s) for dasrt
# --------------------------------------------------
fsurf_list=
# -------------------------------------------------
# predefined function(s)s for impl
# fres
# and
# fadda
# Example :
# impl([1;0;0],[-0.04;0.04;0],0,0.4,'resid','aplusp')
# --------------------------------------------------
fres_list= resid
fadda_list= aplusp
fj2_list= dgbydy
# -------------------------------------------------
# predefined function(s) for colnew
# uses : fcoldg , fcolg, fcoldf,fcolf,fcolgu
# --------------------------------------------------
fcoldg_list=cndg
fcolg_list=cng
fcoldf_list=cndf
fcolf_list=cnf
fcolgu_list=cngu
# -------------------------------------------------
# predefined function(s) for addmenu
# --------------------------------------------------
fbutn_list= haltscicos
# --------------------------------------------------
# predefined function(s) for feval
# just put here the list of 'names' that
# can be used as argument functions for feval
# you must also provide the associated code
# for example in the file ffeval-ex.f
# If you want to use C code use the examples
# in ffeval-c-ex.c
# --------------------------------------------------
ffeval_list=parab parabc
# -------------------------------------------------
# predefined function(s) for corr
# --------------------------------------------------
dgetx_list= corexx
dgety_list= corexy
# -------------------------------------------------
# predefined function(s) for Ex-fort or other Ex-something
# --------------------------------------------------
interf_list= foubare foobar1 icomp loset arset icse0 icse icscof
|