What is the meaning of command for(x:x1:x2) ?

7 views (last 30 days)
Mohit Bhatia
Mohit Bhatia on 23 Sep 2020
Edited: Ameer Hamza on 23 Sep 2020
What is the meaning of command that is (for (x:x1:x2)) ?

Answers (1)

Ameer Hamza
Ameer Hamza on 23 Sep 2020
Edited: Ameer Hamza on 23 Sep 2020
The correct is
for i = x:x1:x2 % any variable name can be used in place of i
% The variable i takes value from vector x:x1:x2 in each iteration
end
In each iteration, MATLAB takes values from vector x:x1:x2 and assigns it to the variable i. To understand what (x:x1:x2) means, read here: https://www.mathworks.com/help/matlab/ref/colon.html

Categories

Find more on Simulink in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!