Selecting four elements then starting again.

1 Ansicht (letzte 30 Tage)
Lukasz Skowron
Lukasz Skowron am 18 Okt. 2018
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.

Akzeptierte Antwort

Erivelton Gualter
Erivelton Gualter am 22 Okt. 2018

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

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by