Filter löschen
Filter löschen

Merge two arrays one after each other by elemnets

1 Ansicht (letzte 30 Tage)
H R
H R am 31 Mär. 2017
Beantwortet: KSSV am 31 Mär. 2017
I have an array a1=[1 2 3 4 ... 50] I also have string '*GOAL'
I want to create a single string B that can produce:
*GOAL 1
*GOAL 2
*GOAL 3
*GOAL 4
*GOAL 5
...
I want to use this string B and replace a character [$1] that is inside a text file 'Goals.txt'.

Akzeptierte Antwort

KSSV
KSSV am 31 Mär. 2017
str1 = 'GOAL ' ;
idx = 1:50 ;
str1 = repmat(str1,length(idx),1) ;
iwant = [str1,num2str(idx')]

Weitere Antworten (0)

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by