Selecting four elements then starting again.

1 vue (au cours des 30 derniers jours)
Lukasz Skowron
Lukasz Skowron le 18 Oct 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.

Réponse acceptée

Erivelton Gualter
Erivelton Gualter le 22 Oct 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

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by