comparison libinterp/corefcn/dassl.cc @ 30896:c9788d7f6e65

maint: Use "fcn" as preferred abbreviation for "function" in libinterp/. * __eigs__.cc, bsxfun.cc, cellfun.cc, daspk.cc, dasrt.cc, dassl.cc, data.cc, debug.cc, error.cc, graphics.cc, graphics.in.h, gzfstream.h, ls-hdf5.cc, lsode.cc, max.cc, oct-opengl.h, quad.cc, strfns.cc, utils.cc, utils.h, variables.cc, __ode15__.cc, gzip.cc, cdef-manager.cc, ov-fcn-handle.cc, ov-java.cc, ov-usr-fcn.cc, bp-table.cc, bp-table.h, lex.h, lex.ll, oct-parse.yy, pt-eval.cc: Replace "func", "fun", "fn" in documentation and variable names with "fcn".
author Rik <rik@octave.org>
date Tue, 05 Apr 2022 08:33:58 -0700
parents 08b08b7f05b2
children e88a07dec498
comparison
equal deleted inserted replaced
30895:360d330cc30e 30896:c9788d7f6e65
365 if (state.numel () != deriv.numel ()) 365 if (state.numel () != deriv.numel ())
366 error ("dassl: X and XDOT_0 must have the same size"); 366 error ("dassl: X and XDOT_0 must have the same size");
367 367
368 double tzero = out_times (0); 368 double tzero = out_times (0);
369 369
370 DAEFunc func (dassl_user_function); 370 DAEFunc fcn (dassl_user_function);
371 if (dassl_jac.is_defined ()) 371 if (dassl_jac.is_defined ())
372 func.set_jacobian_function (dassl_user_jacobian); 372 fcn.set_jacobian_function (dassl_user_jacobian);
373 373
374 DASSL dae (state, deriv, tzero, func); 374 DASSL dae (state, deriv, tzero, fcn);
375 375
376 dae.set_options (dassl_opts); 376 dae.set_options (dassl_opts);
377 377
378 Matrix output; 378 Matrix output;
379 Matrix deriv_output; 379 Matrix deriv_output;