FAQ: Difference between revisions

Jump to navigation Jump to search
44 bytes removed ,  1 October 2014
→‎Do-Until loop structure: remove note on Matlab version (it just does not exist)
(→‎Do-Until loop structure: remove note on Matlab version (it just does not exist))
Line 394: Line 394:
===Do-Until loop structure===
===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).
Similar to the do-while loop in C and C++, Octave allows a do-until loop which does not exist in Matlab


   x=0
   x = 0
   do
   do
     x=x+1
     x += 1;
   until x==10
   until (x == 10)


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

Navigation menu