How can I add a char in a matrix?

hey how can I add a string in matrix?
ex.
for i=1:5
A(i)=i+1;
end
mat2str(A);
...
for I want to have to put A or B or C.
I tried this
A(5)='B'
but the output was
1 2 3 4 65.
How could I make it like
1 2 3 4 A
??? please help me :)

Réponses (2)

Azzi Abdelmalek
Azzi Abdelmalek le 6 Oct 2012
Modifié(e) : Azzi Abdelmalek le 7 Oct 2012

0 votes

use cell aray
A=[1 2 3 4]
B=[ num2cell(A) 'A']
%or
A=num2cell(A)
A{5}='A'

5 commentaires

jelly
jelly le 6 Oct 2012
thanks man, this would work but, I need to convert this to str so I can use strcat().. and now im wondering about that.
Matt J
Matt J le 6 Oct 2012
Modifié(e) : Matt J le 6 Oct 2012
[A+'0','A']
or
[num2str(A), ' A']
jelly
jelly le 6 Oct 2012
with a triple space? in num2str?
Azzi Abdelmalek
Azzi Abdelmalek le 7 Oct 2012
jelly what do you want exactly?
Dursun ÖNER
Dursun ÖNER le 22 Mai 2020
well what do i do if we want to convert 'AA' instead 'A'

Connectez-vous pour commenter.

Matt Fig
Matt Fig le 6 Oct 2012

0 votes

A = sprintf('%i',1:5); % Make a character array.
A(6) = 'B'
If you must have spaces, then you must be more careful about how you index into A. A character array counts the spaces as elements!
A = sprintf('%i ',1:5);
A(11) = 'B'

Catégories

En savoir plus sur Data Type Identification dans Centre d'aide et File Exchange

Question posée :

le 6 Oct 2012

Commenté :

le 22 Mai 2020

Community Treasure Hunt

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

Start Hunting!

Translated by