How do I set a text variable The new text is added with the old
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ayman saleh
el 6 de Mayo de 2023
Comentada: Ayman saleh
el 6 de Mayo de 2023
Hi guys
I have a duplicate and a new text is being generated, how do I add the new to the old?
for n=1:10
ss = n + 'ss';
end
dlmwrite(sprintf(All.txt', n), ss;
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 6 de Mayo de 2023
> how do I add the new to the old?
ss = [];
for n=1:10
ss = [ss, num2str(n), 'ss'];
end
ss
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!