Filter löschen
Filter löschen

create an array contain no of string adding one by one

1 Ansicht (letzte 30 Tage)
Partha
Partha am 2 Nov. 2012
I would like to create an array in such a way that suppose the first element is 'Hi', second element is 'I', third element is 'am' and so on e.g. array(1) = 'Hi' array(2) = 'I' array(3) = 'am' array(4) = 'ABCD'

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 3 Nov. 2012
Bearbeitet: Walter Roberson am 3 Nov. 2012
This is something that cannot be done in MATLAB. Azzi's answer shows the closest you can get, but for it instead of A(1) being 'Hi', instead A(1) would be {'Hi'} which is a cell array instead of a string. A{1} would be the string 'Hi' though.
array{1} = 'Hi'
array{2} = 'I'
array{3} = 'am'
array{4} = 'ABCD'

Weitere Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 2 Nov. 2012
A={'Hi','I','am','ABCD'}

Partha
Partha am 3 Nov. 2012
Mr Roberson
Thanks for your answer. But actually i want to insert (or assigned) 'Hi','I','am','ABCD' one by one in A. How can i do this? Please help me.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by