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.

for Loops<br />

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

for k = 5:10:35<br />

x = k^2<br />

end<br />

The loop variable k is initially<br />

assigned the value 5, and x is<br />

calculated from x = k^2. Each<br />

successive pass through the loop<br />

increments k by 10 and calculates<br />

x until k exceeds 35. Thus k takes<br />

on the values 5, 15, 25, and 35, and<br />

x takes on the values 25, 225, 625,<br />

and 1225. The program then<br />

continues to execute any<br />

statements following the end<br />

statement.<br />

4-24<br />

Z.R.K<br />

Flowchart of a for<br />

Loop. Figure 4.5–1

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

Saved successfully!

Ooh no, something went wrong!