Repeat some elements in a vector

5 visualizzazioni (ultimi 30 giorni)
Ali Tawfik
Ali Tawfik il 4 Mag 2020
Modificato: Ameer Hamza il 4 Mag 2020
clear all;
u={'High';'M';'LOW'}
y=repelem(u(1:3),2)
% would like the output y=[high;M;LOW;high;M;Low]
I am trying to use repelem but I repeat the element it self n number of times not as I mentioned before
I would like to repeat al the u 2 times with the same sequence
Thanks,

Risposta accettata

Ameer Hamza
Ameer Hamza il 4 Mag 2020
Modificato: Ameer Hamza il 4 Mag 2020
repmat() is the correct function to use here
u={'High';'M';'LOW'}
y=repmat(u(1:3),2,1)
Result
y =
6×1 cell array
{'High'}
{'M' }
{'LOW' }
{'High'}
{'M' }
{'LOW' }

Più risposte (0)

Categorie

Scopri di più su Elementary Math in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by