Borrar filtros
Borrar filtros

How can I add a char in a matrix?

5 visualizaciones (últimos 30 días)
jelly
jelly el 6 de Oct. de 2012
Comentada: Dursun ÖNER el 22 de Mayo de 2020
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 :)

Respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 6 de Oct. de 2012
Editada: Azzi Abdelmalek el 7 de Oct. de 2012
use cell aray
A=[1 2 3 4]
B=[ num2cell(A) 'A']
%or
A=num2cell(A)
A{5}='A'
  5 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 7 de Oct. de 2012
jelly what do you want exactly?
Dursun ÖNER
Dursun ÖNER el 22 de Mayo de 2020
well what do i do if we want to convert 'AA' instead 'A'

Iniciar sesión para comentar.


Matt Fig
Matt Fig el 6 de Oct. de 2012
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'

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by