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

7 次查看(过去 30 天)
What is the meaning of command that is (for (x:x1:x2)) ?

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-9-23
编辑:Ameer Hamza 2020-9-23
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

类别

Help CenterFile Exchange 中查找有关 Simulink 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by