├── README.md ├── conversion ├── Contents.m ├── HTMLequation.m ├── gpmigrate2_2f.m ├── gpmodel2func.m ├── gpmodel2mfile.m ├── gpmodel2struct.m ├── gpmodel2sym.m ├── gpmodelgenes2mfile.m └── processOrgChartJS.m ├── core ├── Contents.m ├── assignadf.m ├── bootsample.m ├── comparemodelsREC.m ├── crossover.m ├── displaystats.m ├── drawtrees.m ├── evalfitness.m ├── evalfitness_par.m ├── extract.m ├── genebrowser.m ├── genefilter.m ├── genes2gpmodel.m ├── getcomplexity.m ├── getdepth.m ├── getnumnodes.m ├── gp_2d_mesh.m ├── gp_toolboxlist.m ├── gpcheck.m ├── gpdefaults.m ├── gpfinalise.m ├── gpinit.m ├── gpinitparallel.m ├── gpmodelfilter.m ├── gpmodelreport.m ├── gpmodelvars.m ├── gppopvars.m ├── gppretty.m ├── gprandom.m ├── gpreformat.m ├── gpresids.m ├── gpsimplify.m ├── gpsym.m ├── gpterminate.m ├── gptic.m ├── gptoc.m ├── gptoolboxcheck.m ├── gptreestructure.m ├── initbuild.m ├── kogene.m ├── mergegp.m ├── mutate.m ├── ndfsort_rank1.m ├── paretoreport.m ├── parseadf.m ├── picknode.m ├── popbrowser.m ├── popbuild.m ├── pref2inf.m ├── regressionErrorCharacteristic.m ├── rungp.m ├── runtree.m ├── scangenes.m ├── selection.m ├── standaloneModelStats.m ├── summary.m ├── tree2evalstr.m ├── treegen.m ├── uniquegenes.m └── updatestats.m ├── examples ├── concrete.mat ├── cubic_config.m ├── demo2data.mat ├── gpdemo1.m ├── gpdemo1_config.m ├── gpdemo2.m ├── gpdemo2_config.m ├── gpdemo3.m ├── gpdemo3_config.m ├── gpdemo4.m ├── gpdemo4_config.m ├── ph2data.mat ├── quartic_fitfun.m ├── ripple_config.m ├── salustowicz1d_config.m └── uball_config.m ├── fitness ├── regressmulti_fitfun.m └── regressmulti_fitfun_validate.m ├── gpl.txt ├── nodefcn ├── add3.m ├── cube.m ├── gauss.m ├── gpand.m ├── gpnot.m ├── gpor.m ├── gth.m ├── iflte.m ├── lth.m ├── maxx.m ├── minx.m ├── mult3.m ├── neg.m ├── negexp.m ├── pdiv.m ├── plog.m ├── psqroot.m ├── square.m ├── step.m └── thresh.m ├── rules ├── gprule_no_nested_adfs.m └── gprule_template.m └── user └── gp_userfcn.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/README.md -------------------------------------------------------------------------------- /conversion/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/Contents.m -------------------------------------------------------------------------------- /conversion/HTMLequation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/HTMLequation.m -------------------------------------------------------------------------------- /conversion/gpmigrate2_2f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmigrate2_2f.m -------------------------------------------------------------------------------- /conversion/gpmodel2func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmodel2func.m -------------------------------------------------------------------------------- /conversion/gpmodel2mfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmodel2mfile.m -------------------------------------------------------------------------------- /conversion/gpmodel2struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmodel2struct.m -------------------------------------------------------------------------------- /conversion/gpmodel2sym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmodel2sym.m -------------------------------------------------------------------------------- /conversion/gpmodelgenes2mfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/gpmodelgenes2mfile.m -------------------------------------------------------------------------------- /conversion/processOrgChartJS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/conversion/processOrgChartJS.m -------------------------------------------------------------------------------- /core/Contents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/Contents.m -------------------------------------------------------------------------------- /core/assignadf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/assignadf.m -------------------------------------------------------------------------------- /core/bootsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/bootsample.m -------------------------------------------------------------------------------- /core/comparemodelsREC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/comparemodelsREC.m -------------------------------------------------------------------------------- /core/crossover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/crossover.m -------------------------------------------------------------------------------- /core/displaystats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/displaystats.m -------------------------------------------------------------------------------- /core/drawtrees.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/drawtrees.m -------------------------------------------------------------------------------- /core/evalfitness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/evalfitness.m -------------------------------------------------------------------------------- /core/evalfitness_par.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/evalfitness_par.m -------------------------------------------------------------------------------- /core/extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/extract.m -------------------------------------------------------------------------------- /core/genebrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/genebrowser.m -------------------------------------------------------------------------------- /core/genefilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/genefilter.m -------------------------------------------------------------------------------- /core/genes2gpmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/genes2gpmodel.m -------------------------------------------------------------------------------- /core/getcomplexity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/getcomplexity.m -------------------------------------------------------------------------------- /core/getdepth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/getdepth.m -------------------------------------------------------------------------------- /core/getnumnodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/getnumnodes.m -------------------------------------------------------------------------------- /core/gp_2d_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gp_2d_mesh.m -------------------------------------------------------------------------------- /core/gp_toolboxlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gp_toolboxlist.m -------------------------------------------------------------------------------- /core/gpcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpcheck.m -------------------------------------------------------------------------------- /core/gpdefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpdefaults.m -------------------------------------------------------------------------------- /core/gpfinalise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpfinalise.m -------------------------------------------------------------------------------- /core/gpinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpinit.m -------------------------------------------------------------------------------- /core/gpinitparallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpinitparallel.m -------------------------------------------------------------------------------- /core/gpmodelfilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpmodelfilter.m -------------------------------------------------------------------------------- /core/gpmodelreport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpmodelreport.m -------------------------------------------------------------------------------- /core/gpmodelvars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpmodelvars.m -------------------------------------------------------------------------------- /core/gppopvars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gppopvars.m -------------------------------------------------------------------------------- /core/gppretty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gppretty.m -------------------------------------------------------------------------------- /core/gprandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gprandom.m -------------------------------------------------------------------------------- /core/gpreformat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpreformat.m -------------------------------------------------------------------------------- /core/gpresids.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpresids.m -------------------------------------------------------------------------------- /core/gpsimplify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpsimplify.m -------------------------------------------------------------------------------- /core/gpsym.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpsym.m -------------------------------------------------------------------------------- /core/gpterminate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gpterminate.m -------------------------------------------------------------------------------- /core/gptic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gptic.m -------------------------------------------------------------------------------- /core/gptoc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gptoc.m -------------------------------------------------------------------------------- /core/gptoolboxcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gptoolboxcheck.m -------------------------------------------------------------------------------- /core/gptreestructure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/gptreestructure.m -------------------------------------------------------------------------------- /core/initbuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/initbuild.m -------------------------------------------------------------------------------- /core/kogene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/kogene.m -------------------------------------------------------------------------------- /core/mergegp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/mergegp.m -------------------------------------------------------------------------------- /core/mutate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/mutate.m -------------------------------------------------------------------------------- /core/ndfsort_rank1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/ndfsort_rank1.m -------------------------------------------------------------------------------- /core/paretoreport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/paretoreport.m -------------------------------------------------------------------------------- /core/parseadf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/parseadf.m -------------------------------------------------------------------------------- /core/picknode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/picknode.m -------------------------------------------------------------------------------- /core/popbrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/popbrowser.m -------------------------------------------------------------------------------- /core/popbuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/popbuild.m -------------------------------------------------------------------------------- /core/pref2inf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/pref2inf.m -------------------------------------------------------------------------------- /core/regressionErrorCharacteristic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/regressionErrorCharacteristic.m -------------------------------------------------------------------------------- /core/rungp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/rungp.m -------------------------------------------------------------------------------- /core/runtree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/runtree.m -------------------------------------------------------------------------------- /core/scangenes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/scangenes.m -------------------------------------------------------------------------------- /core/selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/selection.m -------------------------------------------------------------------------------- /core/standaloneModelStats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/standaloneModelStats.m -------------------------------------------------------------------------------- /core/summary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/summary.m -------------------------------------------------------------------------------- /core/tree2evalstr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/tree2evalstr.m -------------------------------------------------------------------------------- /core/treegen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/treegen.m -------------------------------------------------------------------------------- /core/uniquegenes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/uniquegenes.m -------------------------------------------------------------------------------- /core/updatestats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/core/updatestats.m -------------------------------------------------------------------------------- /examples/concrete.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/concrete.mat -------------------------------------------------------------------------------- /examples/cubic_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/cubic_config.m -------------------------------------------------------------------------------- /examples/demo2data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/demo2data.mat -------------------------------------------------------------------------------- /examples/gpdemo1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo1.m -------------------------------------------------------------------------------- /examples/gpdemo1_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo1_config.m -------------------------------------------------------------------------------- /examples/gpdemo2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo2.m -------------------------------------------------------------------------------- /examples/gpdemo2_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo2_config.m -------------------------------------------------------------------------------- /examples/gpdemo3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo3.m -------------------------------------------------------------------------------- /examples/gpdemo3_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo3_config.m -------------------------------------------------------------------------------- /examples/gpdemo4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo4.m -------------------------------------------------------------------------------- /examples/gpdemo4_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/gpdemo4_config.m -------------------------------------------------------------------------------- /examples/ph2data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/ph2data.mat -------------------------------------------------------------------------------- /examples/quartic_fitfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/quartic_fitfun.m -------------------------------------------------------------------------------- /examples/ripple_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/ripple_config.m -------------------------------------------------------------------------------- /examples/salustowicz1d_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/salustowicz1d_config.m -------------------------------------------------------------------------------- /examples/uball_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/examples/uball_config.m -------------------------------------------------------------------------------- /fitness/regressmulti_fitfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/fitness/regressmulti_fitfun.m -------------------------------------------------------------------------------- /fitness/regressmulti_fitfun_validate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/fitness/regressmulti_fitfun_validate.m -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/gpl.txt -------------------------------------------------------------------------------- /nodefcn/add3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/add3.m -------------------------------------------------------------------------------- /nodefcn/cube.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/cube.m -------------------------------------------------------------------------------- /nodefcn/gauss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/gauss.m -------------------------------------------------------------------------------- /nodefcn/gpand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/gpand.m -------------------------------------------------------------------------------- /nodefcn/gpnot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/gpnot.m -------------------------------------------------------------------------------- /nodefcn/gpor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/gpor.m -------------------------------------------------------------------------------- /nodefcn/gth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/gth.m -------------------------------------------------------------------------------- /nodefcn/iflte.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/iflte.m -------------------------------------------------------------------------------- /nodefcn/lth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/lth.m -------------------------------------------------------------------------------- /nodefcn/maxx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/maxx.m -------------------------------------------------------------------------------- /nodefcn/minx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/minx.m -------------------------------------------------------------------------------- /nodefcn/mult3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/mult3.m -------------------------------------------------------------------------------- /nodefcn/neg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/neg.m -------------------------------------------------------------------------------- /nodefcn/negexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/negexp.m -------------------------------------------------------------------------------- /nodefcn/pdiv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/pdiv.m -------------------------------------------------------------------------------- /nodefcn/plog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/plog.m -------------------------------------------------------------------------------- /nodefcn/psqroot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/psqroot.m -------------------------------------------------------------------------------- /nodefcn/square.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/square.m -------------------------------------------------------------------------------- /nodefcn/step.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/step.m -------------------------------------------------------------------------------- /nodefcn/thresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/nodefcn/thresh.m -------------------------------------------------------------------------------- /rules/gprule_no_nested_adfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/rules/gprule_no_nested_adfs.m -------------------------------------------------------------------------------- /rules/gprule_template.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/rules/gprule_template.m -------------------------------------------------------------------------------- /user/gp_userfcn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/is-centre/gptips2f-matlab/HEAD/user/gp_userfcn.m --------------------------------------------------------------------------------