writing char array to a text file

14 visualizzazioni (ultimi 30 giorni)
Danielle
Danielle il 25 Ago 2011
Commentato: maira alvi il 5 Ago 2015
Hello ! I have a .mat file with two variables. One is char array and the other double. Im able to save out the 2nd variable using save('a.txt', 'var2',' -ASCII') but im unable to save the var1 since its a combination of chars and numbers. csvwrite isnt working either. Please advice Thank you

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 25 Ago 2011
There are many ways, depending what you want.
a=['adc',char(10),'123']
dlmwrite('test.txt',a,'delimiter','');
edit test.txt

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by