How can I write an output file .dat?
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen

How can I write an output file(.dat) which containing a,t,y,z?
0 Kommentare
Antworten (1)
Tony Mohan Varghese
am 21 Mär. 2018
you can use the save function in MATLAB.
for example:
x = randn(100,1);
save test.dat x -ascii
% or
save('c:\folderyouwant\test.dat','x','-ascii');
0 Kommentare
Siehe auch
Kategorien
Mehr zu Database Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!