how to use fprintf to print strings and words
210 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nabil Abdullah
el 15 de Mzo. de 2017
Comentada: Nabil Abdullah
el 15 de Mzo. de 2017
Dear All,
I would like to ask how I would get fprintf to produce the following where A = [{'a'} {'b'} {'c'}], B = [1 2 3],
>> a 1
b 2
c 3
Thank you
0 comentarios
Respuesta aceptada
Jan
el 15 de Mzo. de 2017
A = {'a', 'b','c'}; % A nicer notation
B = [1 2 3];
Either a loop:
for k = 1:length(A)
fprintf('%s %g\n', A{k}, B(k));
end
Or create one cell at first:
C = cat(1, A, num2cell(B));
fprintf('%s %g\n', C{:});
Más respuestas (0)
Ver también
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!