13.01.2015 Views

Chapter 4: Programming with MATLAB - FET

Chapter 4: Programming with MATLAB - FET

Chapter 4: Programming with MATLAB - FET

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

4-30<br />

A simple example of a while loop is<br />

x = 5;k = 0;<br />

while x < 25<br />

end<br />

k = k + 1;<br />

y(k) = 3*x;<br />

x = 2*x-1;<br />

The loop variable x is initially assigned the value 5, and<br />

it keeps this value until the statement x = 2*x - 1 is<br />

encountered the first time. Its value then changes to 9.<br />

Before each pass through the loop, x is checked to see<br />

if its value is less than 25. If so, the pass is made. If not,<br />

the loop is skipped.<br />

Z.R.K

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!