dlmwrite with text and numbers
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Daelyn Greene
le 19 Fév 2019
Commenté : Daelyn Greene
le 19 Fév 2019
I am wanting to transfer data that is input into a UI to a csv file. I am using dlmwrite currently but keep running into the issue of the csv not functioning properly. Dlmwrite is outputting nonsense text, and I frankly am lost on what to try. I've done all I know how to do.
4 commentaires
per isakson
le 19 Fév 2019
Modifié(e) : per isakson
le 19 Fév 2019
dlmwrite, Write matrix to ASCII-delimited file says dlmwrite(filename,M) writes numeric data in array M to an ASCII format file, i.e not text
Réponse acceptée
per isakson
le 19 Fév 2019
Something like
for jj = 1: len
fprintf( fid, '___\n', num(jj), txt{jj} )
end
is a standard approach
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Text Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!