661
edits
Carandraug (talk | contribs) (→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 | 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; | ||
until x==10 | until (x == 10) | ||
==How does Octave solve linear systems?== | ==How does Octave solve linear systems?== |