Using C++, I have to create a vector x using MatDoub several times over as I need to specify the exact value of k each time.
Below is the output of the search for all the instances of MatDoub in the code.
Can anybody tell me how to free x?
thanks
Below is the output of the search for all the instances of MatDoub in the code.
Can anybody tell me how to free x?
thanks
Code:
main.cpp: MatDoub x(k,ndim);
krig.h: const MatDoub &x;
krig.h: MatDoub v;
krig.h: Krig(MatDoub_I &xx, VecDoub_I &yy, T &vargram, const Doub *err=NULL)
krig.h: Powvargram(MatDoub_I &x, VecDoub_I &y, const Doub beta=1.5, const Doub nug=0.)
interp_2d.h: const MatDoub &y;
interp_2d.h: Bilin_interp(VecDoub_I &x1v, VecDoub_I &x2v, MatDoub_I &ym)
interp_2d.h: const MatDoub &y;
interp_2d.h: Poly2D_interp(VecDoub_I &x1v, VecDoub_I &x2v, MatDoub_I &ym,
interp_2d.h: const MatDoub &y;
interp_2d.h: Spline2D_interp(VecDoub_I &x1v, VecDoub_I &x2v, MatDoub_I &ym)
interp_2d.h: const Doub d1, const Doub d2, MatDoub_O &c) {
interp_2d.h: MatDoub c(4,4);
LUdcmp.h: MatDoub lu;
LUdcmp.h: LUdcmp(MatDoub_I &a);
LUdcmp.h: void solve(MatDoub_I &b, MatDoub_O &x);
LUdcmp.h: void solve(MatDoub_I &b, MatDoub_O &x);
LUdcmp.h: void inverse(MatDoub_O &ainv);
LUdcmp.h: MatDoub_I &aref;
LUdcmp.h: LUdcmp::LUdcmp(MatDoub_I &a) : n(a.nrows()), lu(a), aref(a), indx(n) {
LUdcmp.h: void LUdcmp::solve(MatDoub_I &b, MatDoub_O &x)
LUdcmp.h: void LUdcmp::solve(MatDoub_I &b, MatDoub_O &x)
LUdcmp.h: void LUdcmp::inverse(MatDoub_O &ainv)
nr3.h: typedef const NRmatrix<Doub> MatDoub_I;
nr3.h: typedef NRmatrix<Doub> MatDoub, MatDoub_O, MatDoub_IO;
nr3.h: typedef NRmatrix<Doub> MatDoub, MatDoub_O, MatDoub_IO;
nr3.h: typedef NRmatrix<Doub> MatDoub, MatDoub_O, MatDoub_IO;