Assign to cell elements with both string and number?

2 visualizaciones (últimos 30 días)
Khanh
Khanh el 3 de Dic. de 2014
Comentada: Khanh el 9 de Dic. de 2014
Hi ,
Could someone tell me how to assign to cell element with both string and number? For example with my simple code:
clc
close all
clear all
text={'STT'}
x=1:10
The result I want to get is
text{'STT';'1';'2';'3';...;'10'}
Thank you.
  2 comentarios
Andrew Newell
Andrew Newell el 3 de Dic. de 2014
I presume you mean
text = {'STT';'1';'2';'3';...;'10'}
?
Khanh
Khanh el 3 de Dic. de 2014
Sorry. I mean
text = {'STT';'1';'2';'3';'4';'5';'6';'7';'8';'9';'10'}

Iniciar sesión para comentar.

Respuesta aceptada

Andrew Newell
Andrew Newell el 3 de Dic. de 2014
Editada: Andrew Newell el 3 de Dic. de 2014
You can use num2str to convert x to string; but you need to make it operate on one element of x at a time, or they will be bundled in one string. One approach is to use arrayfun:
text = [text; arrayfun(@num2str,x','UniformOutput',false)]
Note the transpose (') on the x, to make sure it is a column vector.
This answer was edited because I did not read the question correctly the first couple of times.
  1 comentario
Khanh
Khanh el 9 de Dic. de 2014
Hi Andrew,
Thank for your answer. It works on me. I am sorry for my late respond.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by