├── .gitattributes ├── .gitignore ├── Chapter10.Optimisation ├── amoeba.c ├── amotry.c ├── brent.c ├── dbrent.c ├── dfpmin.c ├── dlinmin.c ├── dpfmin.c ├── golden.c ├── linmin.c ├── mnbrak.c └── nrutil.h ├── Chapter11.Eigensystems ├── balanc.c ├── balanc.o ├── eigsrt.c ├── elmhes.c ├── elmhes.o ├── helloworld.c ├── hqr.c ├── hqr.o ├── jacobi.c ├── jacobi.o ├── nrutil.h ├── tqli.c ├── trapzd.c ├── trapzd.txt ├── tred2.c └── trli.c ├── Chapter12.Fast-Fourier-Transforms ├── cosft1.c ├── cosft2.c ├── four1.c ├── fourfs.c ├── hello.c ├── hello.exe ├── helloworld.c ├── nrutil.h ├── realft.c ├── rlft3.c ├── rlft3.txt ├── sinft.c ├── twofft.c └── twofft.txt ├── Chapter14.Statistical-Description-of-data ├── SubSystem ├── avevar.c ├── chsone.c ├── chstwo.c ├── cntab1.c ├── cntabs2.c ├── crank.c ├── ftest.c ├── kendl2.c ├── ks2d1s.c ├── ks2d2s.c ├── ksone.c ├── kstwo.c ├── moment.c ├── nrutil.h ├── pearsn.c ├── probks.c ├── quadct.c ├── quadvl.c ├── rk4.c ├── savgol.c ├── skone.c ├── spear.c ├── tptest.c ├── ttest.c └── tutest.c ├── Chapter15.Modelling-of-data ├── fit.c └── nrutil.h ├── Chapter16.Integration-of-Ordinary-Differential-Equations ├── bsstep.c ├── jacobn.c ├── mmid.c ├── nrutil.h ├── odeint.c ├── pzextr.c ├── rk4.c ├── rkck.c ├── rkdumb.c ├── rkqs.c ├── rzextr.c ├── simpr.c ├── stifbs.c └── stoerm.c ├── Chapter17.Two-Point-Boundary-Value-Problems ├── bksub.c ├── derive-test.c ├── difeq.c ├── load.c ├── load1.c ├── load2.c ├── loff.c ├── newt.c ├── nrutil.h ├── pinvs.c ├── score-test.c ├── score-test2.c ├── score.c ├── scoref.c ├── sfroid.c ├── shootf.c ├── solvde.c └── sphftp.c ├── Chapter18.Integral-Equations-and-Inverse-Theory ├── fred2.c ├── fredex.c ├── fredin.c ├── kermom.c ├── nrutil.h ├── quadmx.c ├── voltra.c └── wwghts.c ├── Chapter19.Partial-Differential-Equations ├── nrutil.h └── sor.c ├── Chapter2.Solution-of-Linear-Equations ├── banmul.c ├── call-gaussj.c ├── cyclic.c ├── gaussj,dat.txt ├── gaussj.c ├── gaussj.h ├── lubksb.c ├── lubksb.o ├── ludcmp.c ├── nrutil.c ├── nrutil.h ├── nrutil.o ├── pythag.c ├── sprsin.c ├── svdcmp.c └── tridag.c ├── Chapter3.Interpolation-and-Extrapolation ├── nrutil.c ├── nrutil.h ├── nrutil.o └── polint.c ├── Chapter4.Elementary-Algorithms ├── gaucof.c ├── gauher.c ├── gaujac.c ├── gaulag.c ├── gauleg.c ├── mdpnt.c ├── midinf.c ├── midpnt.c ├── midsql.c ├── nrutil.h ├── orthog.c ├── qgaus.c ├── qromb.c ├── qromo.c ├── qsimp.c ├── qtrap.c ├── qtrap.o ├── quad3d.c ├── trapzd.c └── trapzd.o ├── Chapter5.Evaluation-of-functions ├── bessj0.c ├── betacf.c ├── betai.c ├── ddpoly.c ├── dfridr.c ├── eulsum.c ├── eulsum.o ├── nrutil.h ├── pade.c ├── poldiv.c ├── polint.c └── ratval.c ├── Chapter6.Special-Functions ├── airy.c ├── airy.o ├── befacf.c ├── bessik.c ├── bessj0.c ├── bessjy.c ├── bessy0.c ├── betai.c ├── nrutil.h ├── pade.c └── stifbs.c ├── Chapter7.Random-Numbers ├── irbit1.c ├── irbit2.c ├── irbit2.o ├── miser.c ├── nrutil.h ├── psdes.c ├── ran1.c ├── ran4.c ├── ran4.o ├── shell.c ├── sobseq.c ├── sobseq.o ├── sort.c └── vegas.c ├── Chapter8.Sorting ├── hpsort.c ├── hpsort.o ├── nrutil.h ├── piksr2.c ├── piksrt.c ├── select.c ├── shell.c └── sort.c ├── Chpater9.Non-linear-Equations ├── fdjac.c ├── fmin.c ├── laguer.c ├── lnsrch.c ├── newt.c ├── nrutil.c ├── nrutil.h ├── nrutil.o ├── qroot.c ├── rtbis.c ├── rtflsp.c ├── rtnewt.c ├── rtsafe.c ├── rtsec.c ├── scrsho.c ├── usrfun.c ├── zbrak.c ├── zbrent.c ├── zrhqr.c ├── zriddr.c └── zroots.c ├── Numerical recipies in C ├── Numerical recipies in C.sln └── Numerical recipies in C │ ├── Numerical recipies in C.vcxproj │ └── Numerical recipies in C.vcxproj.filters ├── Project1 ├── Project1.sln └── Project1 │ ├── Project1.vcxproj │ └── Project1.vcxproj.filters ├── README.md ├── call-qromo.c ├── complex.c ├── complex.h ├── hello.c ├── hello.exe ├── hello.i ├── hello.o ├── hello.s ├── helloworld.c ├── makefile.txt ├── nbproject ├── configurations.xml ├── private │ ├── CodeAssistancePathMapper.properties │ ├── Default-build.log │ ├── Default.properties │ ├── configurations.xml │ ├── launcher.properties │ └── private.xml └── project.xml ├── nr3.h ├── nr3python.h ├── nrutil.c ├── nrutil.h ├── somemodule.cc ├── somemodule.cpp ├── test.c └── test.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter10.Optimisation/amoeba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/amoeba.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/amotry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/amotry.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/brent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/brent.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/dbrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/dbrent.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/dfpmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/dfpmin.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/dlinmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/dlinmin.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/dpfmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/dpfmin.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/golden.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/golden.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/linmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/linmin.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/mnbrak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/mnbrak.c -------------------------------------------------------------------------------- /Chapter10.Optimisation/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter10.Optimisation/nrutil.h -------------------------------------------------------------------------------- /Chapter11.Eigensystems/balanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/balanc.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/balanc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/balanc.o -------------------------------------------------------------------------------- /Chapter11.Eigensystems/eigsrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/eigsrt.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/elmhes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/elmhes.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/elmhes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/elmhes.o -------------------------------------------------------------------------------- /Chapter11.Eigensystems/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/helloworld.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/hqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/hqr.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/hqr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/hqr.o -------------------------------------------------------------------------------- /Chapter11.Eigensystems/jacobi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/jacobi.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/jacobi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/jacobi.o -------------------------------------------------------------------------------- /Chapter11.Eigensystems/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/nrutil.h -------------------------------------------------------------------------------- /Chapter11.Eigensystems/tqli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/tqli.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/trapzd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/trapzd.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/trapzd.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter11.Eigensystems/tred2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/tred2.c -------------------------------------------------------------------------------- /Chapter11.Eigensystems/trli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter11.Eigensystems/trli.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/cosft1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/cosft1.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/cosft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/cosft2.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/four1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/four1.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/fourfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/fourfs.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/hello.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/hello.exe -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/helloworld.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/nrutil.h -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/realft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/realft.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/rlft3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/rlft3.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/rlft3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/rlft3.txt -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/sinft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/sinft.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/twofft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/twofft.c -------------------------------------------------------------------------------- /Chapter12.Fast-Fourier-Transforms/twofft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter12.Fast-Fourier-Transforms/twofft.txt -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/SubSystem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/avevar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/avevar.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/chsone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/chsone.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/chstwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/chstwo.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/cntab1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/cntab1.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/cntabs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/cntabs2.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/crank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/crank.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/ftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/ftest.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/kendl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/kendl2.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/ks2d1s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/ks2d1s.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/ks2d2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/ks2d2s.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/ksone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/ksone.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/kstwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/kstwo.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/moment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/moment.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/nrutil.h -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/pearsn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/pearsn.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/probks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/probks.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/quadct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/quadct.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/quadvl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/quadvl.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/rk4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/rk4.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/savgol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/savgol.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/skone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/skone.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/spear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/spear.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/tptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/tptest.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/ttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/ttest.c -------------------------------------------------------------------------------- /Chapter14.Statistical-Description-of-data/tutest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter14.Statistical-Description-of-data/tutest.c -------------------------------------------------------------------------------- /Chapter15.Modelling-of-data/fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter15.Modelling-of-data/fit.c -------------------------------------------------------------------------------- /Chapter15.Modelling-of-data/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter15.Modelling-of-data/nrutil.h -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/bsstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/bsstep.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/jacobn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/jacobn.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/mmid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/mmid.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/nrutil.h -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/odeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/odeint.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/pzextr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/pzextr.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/rk4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/rk4.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/rkck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/rkck.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/rkdumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/rkdumb.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/rkqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/rkqs.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/rzextr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/rzextr.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/simpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/simpr.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/stifbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/stifbs.c -------------------------------------------------------------------------------- /Chapter16.Integration-of-Ordinary-Differential-Equations/stoerm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter16.Integration-of-Ordinary-Differential-Equations/stoerm.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/bksub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/bksub.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/derive-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/derive-test.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/difeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/difeq.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/load.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/load1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/load1.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/load2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/load2.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/loff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/loff.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/newt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/newt.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/nrutil.h -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/pinvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/pinvs.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/score-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/score-test.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/score-test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/score-test2.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/score.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/scoref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/scoref.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/sfroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/sfroid.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/shootf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/shootf.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/solvde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/solvde.c -------------------------------------------------------------------------------- /Chapter17.Two-Point-Boundary-Value-Problems/sphftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter17.Two-Point-Boundary-Value-Problems/sphftp.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/fred2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/fred2.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/fredex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/fredex.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/fredin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/fredin.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/kermom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/kermom.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/nrutil.h -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/quadmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/quadmx.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/voltra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/voltra.c -------------------------------------------------------------------------------- /Chapter18.Integral-Equations-and-Inverse-Theory/wwghts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter18.Integral-Equations-and-Inverse-Theory/wwghts.c -------------------------------------------------------------------------------- /Chapter19.Partial-Differential-Equations/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter19.Partial-Differential-Equations/nrutil.h -------------------------------------------------------------------------------- /Chapter19.Partial-Differential-Equations/sor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter19.Partial-Differential-Equations/sor.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/banmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/banmul.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/call-gaussj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/call-gaussj.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/cyclic.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/gaussj,dat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/gaussj,dat.txt -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/gaussj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/gaussj.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/gaussj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/gaussj.h -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/lubksb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/lubksb.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/lubksb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/lubksb.o -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/ludcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/ludcmp.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/nrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/nrutil.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/nrutil.h -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/nrutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/nrutil.o -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/pythag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/pythag.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/sprsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/sprsin.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/svdcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/svdcmp.c -------------------------------------------------------------------------------- /Chapter2.Solution-of-Linear-Equations/tridag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter2.Solution-of-Linear-Equations/tridag.c -------------------------------------------------------------------------------- /Chapter3.Interpolation-and-Extrapolation/nrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter3.Interpolation-and-Extrapolation/nrutil.c -------------------------------------------------------------------------------- /Chapter3.Interpolation-and-Extrapolation/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter3.Interpolation-and-Extrapolation/nrutil.h -------------------------------------------------------------------------------- /Chapter3.Interpolation-and-Extrapolation/nrutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter3.Interpolation-and-Extrapolation/nrutil.o -------------------------------------------------------------------------------- /Chapter3.Interpolation-and-Extrapolation/polint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter3.Interpolation-and-Extrapolation/polint.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/gaucof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/gaucof.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/gauher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/gauher.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/gaujac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/gaujac.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/gaulag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/gaulag.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/gauleg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/gauleg.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/mdpnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/mdpnt.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/midinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/midinf.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/midpnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/midpnt.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/midsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/midsql.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/nrutil.h -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/orthog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/orthog.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qgaus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qgaus.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qromb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qromb.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qromo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qromo.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qsimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qsimp.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qtrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qtrap.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/qtrap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/qtrap.o -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/quad3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/quad3d.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/trapzd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/trapzd.c -------------------------------------------------------------------------------- /Chapter4.Elementary-Algorithms/trapzd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter4.Elementary-Algorithms/trapzd.o -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/bessj0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/bessj0.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/betacf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/betacf.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/betai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/betai.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/ddpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/ddpoly.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/dfridr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/dfridr.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/eulsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/eulsum.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/eulsum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/eulsum.o -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/nrutil.h -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/pade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/pade.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/poldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/poldiv.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/polint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/polint.c -------------------------------------------------------------------------------- /Chapter5.Evaluation-of-functions/ratval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter5.Evaluation-of-functions/ratval.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/airy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/airy.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/airy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/airy.o -------------------------------------------------------------------------------- /Chapter6.Special-Functions/befacf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/befacf.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/bessik.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/bessik.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/bessj0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/bessj0.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/bessjy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/bessjy.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/bessy0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/bessy0.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/betai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/betai.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/nrutil.h -------------------------------------------------------------------------------- /Chapter6.Special-Functions/pade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/pade.c -------------------------------------------------------------------------------- /Chapter6.Special-Functions/stifbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter6.Special-Functions/stifbs.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/irbit1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/irbit1.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/irbit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/irbit2.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/irbit2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/irbit2.o -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/miser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/miser.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/nrutil.h -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/psdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/psdes.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/ran1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/ran1.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/ran4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/ran4.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/ran4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/ran4.o -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/shell.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/sobseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/sobseq.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/sobseq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/sobseq.o -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/sort.c -------------------------------------------------------------------------------- /Chapter7.Random-Numbers/vegas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter7.Random-Numbers/vegas.c -------------------------------------------------------------------------------- /Chapter8.Sorting/hpsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/hpsort.c -------------------------------------------------------------------------------- /Chapter8.Sorting/hpsort.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/hpsort.o -------------------------------------------------------------------------------- /Chapter8.Sorting/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/nrutil.h -------------------------------------------------------------------------------- /Chapter8.Sorting/piksr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/piksr2.c -------------------------------------------------------------------------------- /Chapter8.Sorting/piksrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/piksrt.c -------------------------------------------------------------------------------- /Chapter8.Sorting/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/select.c -------------------------------------------------------------------------------- /Chapter8.Sorting/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/shell.c -------------------------------------------------------------------------------- /Chapter8.Sorting/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chapter8.Sorting/sort.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/fdjac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/fdjac.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/fmin.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/laguer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/laguer.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/lnsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/lnsrch.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/newt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/newt.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/nrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/nrutil.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/nrutil.h -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/nrutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/nrutil.o -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/qroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/qroot.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/rtbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/rtbis.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/rtflsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/rtflsp.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/rtnewt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/rtnewt.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/rtsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/rtsafe.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/rtsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/rtsec.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/scrsho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/scrsho.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/usrfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/usrfun.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/zbrak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/zbrak.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/zbrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/zbrent.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/zrhqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/zrhqr.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/zriddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/zriddr.c -------------------------------------------------------------------------------- /Chpater9.Non-linear-Equations/zroots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Chpater9.Non-linear-Equations/zroots.c -------------------------------------------------------------------------------- /Numerical recipies in C/Numerical recipies in C.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Numerical recipies in C/Numerical recipies in C.sln -------------------------------------------------------------------------------- /Numerical recipies in C/Numerical recipies in C/Numerical recipies in C.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Numerical recipies in C/Numerical recipies in C/Numerical recipies in C.vcxproj -------------------------------------------------------------------------------- /Numerical recipies in C/Numerical recipies in C/Numerical recipies in C.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Numerical recipies in C/Numerical recipies in C/Numerical recipies in C.vcxproj.filters -------------------------------------------------------------------------------- /Project1/Project1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Project1/Project1.sln -------------------------------------------------------------------------------- /Project1/Project1/Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Project1/Project1/Project1.vcxproj -------------------------------------------------------------------------------- /Project1/Project1/Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/Project1/Project1/Project1.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /call-qromo.c: -------------------------------------------------------------------------------- 1 | #include "nr3.h" 2 | 3 | float answer = qromo(bessy0,0.0,2.0,midpnt); -------------------------------------------------------------------------------- /complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/complex.c -------------------------------------------------------------------------------- /complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/complex.h -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/hello.c -------------------------------------------------------------------------------- /hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/hello.exe -------------------------------------------------------------------------------- /hello.i: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/hello.o -------------------------------------------------------------------------------- /hello.s: -------------------------------------------------------------------------------- 1 | .file "hello.i" 2 | -------------------------------------------------------------------------------- /helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/helloworld.c -------------------------------------------------------------------------------- /makefile.txt: -------------------------------------------------------------------------------- 1 | g++ -Wall four1.c 2 | -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /nbproject/private/Default-build.log: -------------------------------------------------------------------------------- 1 | makefile.txt:1: *** missing separator. Stop. 2 | -------------------------------------------------------------------------------- /nbproject/private/Default.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /nr3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nr3.h -------------------------------------------------------------------------------- /nr3python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nr3python.h -------------------------------------------------------------------------------- /nrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nrutil.c -------------------------------------------------------------------------------- /nrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/nrutil.h -------------------------------------------------------------------------------- /somemodule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/somemodule.cc -------------------------------------------------------------------------------- /somemodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/somemodule.cpp -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/test.c -------------------------------------------------------------------------------- /test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saulwiggin/Numerical-Recipies-in-C/HEAD/test.exe --------------------------------------------------------------------------------