how do I create Matraix with same elements for several rows
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
venkat siddhartha rama
am 21 Okt. 2019
Kommentiert: Stephan
am 21 Okt. 2019
I have No of turbines = [25,35,45,55,65];
I want No_of_turbines=25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
'' '' '' '' ''
and so on...
In essence, I have to copy the row vector several times into columns...please help
Thanks in advance
0 Kommentare
Akzeptierte Antwort
Stephan
am 21 Okt. 2019
Bearbeitet: Stephan
am 21 Okt. 2019
turbines = [25,35,45,55,65];
how_often = 10;
No_of_turbines = repmat(turbines,how_often,1)
to get it ten times:
No_of_turbines =
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
25 35 45 55 65
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Wind Power finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!