miscellaneous\version.m ........................................ pass 11/11 miscellaneous\what.m ........................................... pass 2/2 miscellaneous\zip.m ............................................ pass 6/6 ode\decic.m .................................................... pass 17/17 ode\ode15i.m ................................................... [IDA ERROR] IDASolve At t = 0, the linear solver setup failed unrecoverably. pass 47/48 FAIL 1 ode\ode15s.m ................................................... [IDA ERROR] IDASolve At t = 0, the linear solver setup failed unrecoverably. [IDA ERROR] IDASolve At t = 0, the linear solver setup failed unrecoverably. pass 37/39 FAIL 2 ode\ode23.m .................................................... pass 38/38 ode\ode23s.m ................................................... pass 32/32 ode\ode45.m .................................................... pass 41/41 ode\odeget.m ................................................... pass 15/15 ode\odeset.m ................................................... pass 9/9 optimization\__all_opts__.m .................................... pass 1/1 .... signal\spectral_xdf.m .......................................... pass 4/4 signal\unwrap.m ................................................ pass 24/24 sparse\bicg.m .................................................. pass 13/13 sparse\bicgstab.m .............................................. pass 12/12 sparse\cgs.m ................................................... pass 11/11 sparse\eigs.m .................................................. pass 189/189 sparse\gmres.m ................................................. pass 16/16 sparse\gplot.m ................................................. pass 1/1 sparse\ichol.m ................................................. pass 24/24 sparse\ilu.m ................................................... pass 53/53 sparse\nonzeros.m .............................................. pass 6/6 sparse\pcg.m ................................................... pass 16/16 sparse\pcr.m ................................................... pass 3/3 sparse\qmr.m ................................................... pass 4/4 sparse\spaugment.m ............................................. pass 1/1 sparse\spconvert.m ............................................. pass 7/7 sparse\spdiags.m ............................................... pass 9/9 sparse\speye.m ................................................. pass 5/5 sparse\spfun.m ................................................. pass 4/4 sparse\spones.m ................................................ pass 3/3 sparse\sprand.m ................................................ pass 22/22 sparse\sprandn.m ............................................... pass 22/22 sparse\sprandsym.m ............................................. pass 10/10 sparse\spstats.m ............................................... pass 1/1 sparse\spy.m ................................................... pass 1/1 sparse\svds.m .................................................. pass 7/7 sparse\tfqmr.m ................................................. pass 11/11 sparse\treelayout.m ............................................ pass 3/3 specfun\beta.m ................................................. pass 12/12 specfun\betainc.m .............................................. pass 28/2 .... >> test('ode15i') [IDA ERROR] IDASolve At t = 0, the linear solver setup failed unrecoverably. ***** testif HAVE_SUNDIALS_SUNLINSOL_KLU opt = odeset ("Jacobian", @jacfunsparse, "AbsTol", 1e-7, "RelTol", 1e-7); [t, y] = ode15i (@rob, [0, 100], [1; 0; 0], [-1e-4; 1e-4; 0], opt); assert ([t(end), y(end,:)], fref, 1e-3); !!!!! test failed IDASolve failed >> test('ode15s') [IDA ERROR] IDASolve At t = 0, the linear solver setup failed unrecoverably. ***** testif HAVE_SUNDIALS_SUNLINSOL_KLU opt = odeset ("MStateDependence", "none", "Mass", sparse ([1, 0, 0; 0, 1, 0; 0, 0, 0]), "Jacobian", @jacfunsparse); [t, y] = ode15s (@rob, [0, 100], [1; 0; 0], opt); assert ([t(end), y(end,:)], frefrob, 1e-3); !!!!! test failed IDASolve failed >>