Selecting four elements then starting again.

1 次查看(过去 30 天)
Hi,
I want to create a program that selects first then second, then third, then fourth element from A = linspace(0,3,4) and then srarting again and then stopping at some point and that is the problem I know how to create a code that doesn't stop but I want it to stop at some point, please can you help me with that and show example code that does this?
Thanks.

采纳的回答

Erivelton Gualter
Erivelton Gualter 2018-10-22

Check the following code. I am not sure that is what you need, but it performs what you said in my understanding.

A = linspace(0,3,4);
Nth = 6;
for i=1:fix(Nth/4)
    for i=1:length(A)
        disp(A(i));
        pause(0.5)
    end
end
for i=1:mod(Nth,4)
    disp(A(i));
    pause(0.5)
end

更多回答(0 个)

类别

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

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by