write char array and num to textfile using fprintf
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Thomas Halbedl
el 14 de Mzo. de 2018
Comentada: Thomas Halbedl
el 14 de Mzo. de 2018
hi, i have one column char array (e.g. a = ['ab'; 'cd']) and one column vector with nums (e.g. b = [1;2]). how can i write this to a txt-file without using a loop. I tried fprintf('%s; %f\n', a, b), but it doesn't satisfying me.
Thank you
2 comentarios
Stephen23
el 14 de Mzo. de 2018
"i have one column char array (e.g. a = ['ab'; 'cd'])"
That char array actually has two columns:
>> a = ['ab'; 'cd'];
>> size(a,2)
ans = 2
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!