FAQ: Difference between revisions

224 bytes added ,  30 September 2014
m (→‎Coming in a future release: removed outdated news for 3.7 and 3.8 release)
Line 391: Line 391:


Octave includes LSODE, DASSL and DASPK for solving systems of stiff ordinary differential and differential-algebraic equations. These functions are built in to the interpreter.
Octave includes LSODE, DASSL and DASPK for solving systems of stiff ordinary differential and differential-algebraic equations. These functions are built in to the interpreter.
===Do-Until loop structure===
Similar to the do-while loop in C and C++, Octave allows a do-until loop. For example, the following is valid in Octave but will not run in MATLAB (2011b).
  x=0
  do
    x=x+1
  until x==10


==How does Octave solve linear systems?==
==How does Octave solve linear systems?==
Anonymous user