INTRODUCTION TO MATLAB – You can find all the Matlab tutorial here. In this tutorial we will discuss about control flow and operation in Matlab.
Introduction
MATLAB is also a programming language. Like other computer programming languages, MATLAB has some decision making structures for control of command execution. These decision making or control flow structures include for loops, while loops, and if-else-end constructions. Control flow structures are often used in script M-files and function M-files.
By creating a file with the extension .m, we can easily write and run programs. We do not need to compile the program since MATLAB is an interpretative (not compiled) language. MATLAB has thousand of functions, and you can add your own using m-files.
MATLAB provides several tools that can be used to control the flow of a program (script or function). In a simple program as shown in the previous Chapter, the commands are executed one after the other. Here we introduce the flow control structure that make possible to skip commands or to execute specific group of commands.
Control flow
MATLAB has four control flow structures: the if statement, the for loop, the while loop, and the switch statement.
The ‘‘if…end’’ structure
MATLAB supports the variants of “if” construct.
• if … end
• if … else … end
• if … elseif … else … end
The simplest form of the if statement is
if expression
statements
end
Here are some examples based on the familiar quadratic formula.
1.
discr = b*b – 4*a*c;
if discr < 0
disp(’Warning: discriminant is negative, roots are imaginary’);
end
2.
discr = b*b – 4*a*c;
if discr < 0
disp(’Warning: discriminant is negative, roots are imaginary’);
elseif discr == 0
disp(’Discriminant is zero, roots are repeated’)
else
disp(’Roots are real’)
end
It should be noted that:
• elseif has no space between else and if (one word)
• no semicolon (;) is needed at the end of lines containing if, else, end
• indentation of if block is not required, but facilitate the reading.
• the end statement is required
Relational and logical operators
A relational operator compares two numbers by determining whether a comparison is true or false. Relational operators are shown below:


Note that the “equal to” relational operator consists of two equal signs (==) (with no space between them), since = is reserved for the assignment operator.
The ‘‘for…end’’ loop
In the for … end loop, the execution of a command is repeated at a fixed and predetermined number of times. The syntax is
for variable = expression
statements
end
Usually, expression is a vector of the form i:s:j. A simple example of for loop is
for ii=1:5
x=ii*ii
end
It is a good idea to indent the loops for readability, especially when they are nested. Note that MATLAB editor does it automatically.
Multiple for loops can be nested, in which case indentation helps to improve the readability. The following statements form the 5-by-5 symmetric matrix A with (i, j) element i/j for j ≥ i:
n = 5;
A = eye(n);
for j=2:n
for i=1:j-1
A(i,j)=i/j;
A(j,i)=i/j;
end
end
The ‘‘while…end’’ loop
This loop is used when the number of passes is not specified. The looping continues until a stated condition is satisfied. The while loop has the form:
while expression
statements
end
The statements are executed as long as expression is true.
x = 1
while x <= 10
x = 3*x
end
It is important to note that if the condition inside the looping is not well defined, the looping will continue indefinitely. If this happens, we can stop the execution by pressing Ctrl-C
Other flow structures
• The break statement. A while loop can be terminated with the break statement, which passes control to the first statement after the corresponding end. The break statement can also be used to exit a for loop.
• The continue statement can also be used to exit a for loop to pass immediately to the next iteration of the loop, skipping the remaining statements in the loop.
• Other control statements include return, continue, switch, etc. For more detail about these commands, consul MATLAB documentation.
Operator precedence
We can build expressions that use any combination of arithmetic, relational, and logical operators. Precedence rules determine the order in which MATLAB evaluates an expression. We have already seen this in the “Tutorial Lessons”.
Here we add other operators in the list. The precedence rules for MATLAB are shown in this list (Table below), ordered from highest (1) to lowest (9) precedence level. Operators are evaluated from left to right.


Saving output to a file
In addition to displaying output on the screen, the command fprintf can be used for writing the output to a file. The saved data can subsequently be used by MATLAB or other softwares.
To save the results of some computation to a file in a text format requires the following steps:
1. Open a file using fopen
2. Write the output using fprintf
3. Close the file using fclose
Here is an example (script) of its use.
% write some variable length strings to a file
op = fopen(’weekdays.txt’,’wt’);
fprintf(op,’Sunday\nMonday\nTuesday\nWednesday\n’);
fprintf(op,’Thursday\nFriday\nSaturday\n’);
fclose(op);
This file (weekdays.txt) can be opened with any program that can read .txt file.
You can see the complete Matlab Matlab here:
- Introduction to Matlab
- Chapter 2 on Matlab
- Matrix on Matlab
- Array And Linear Operation Matlab
- Programming in Matlab
- Control Flow and Operation in Matlab
- Debugging M-files in Matlab
1 Comment