文字列の行列を作りたい。
35 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
パンダ
am 19 Nov. 2021
Beantwortet: Hernia Baby
am 19 Nov. 2021
文字列の行列をfor文で作りたいです。具体的に言うと縦7500横1で1から2500までnomal,2500から5000までright,5001から7500までleftという文字を入れたいです。
0 Kommentare
Akzeptierte Antwort
Hernia Baby
am 19 Nov. 2021
string型なら足し算でいけます
str = ("Sample"+char('0'+(0:60)'));
str(1:20)=str(1:20)+"normal";
str(21:40) = str(21:40)+"right";
str(41:60) = str(41:60)+"left";
str(1:5)
str(21:25)
str(41:45)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!