Filter löschen
Filter löschen

print matrix in txt file row by row

4 Ansichten (letzte 30 Tage)
Mahmoud Hassan
Mahmoud Hassan am 2 Mär. 2019
Beantwortet: madhan ravi am 2 Mär. 2019
i want to print matrix of numbers in a txt file row by row .... which means each line is a row
i am using this code to write the matrix with name LTerm in a txt file
FileName=sprintf('%d.txt',503);
file=fopen(FileName,'wt');
fprintf(file,'%6.2f, \n',LTerm);
fclose(file);
i want to print each row in a separate line

Antworten (1)

madhan ravi
madhan ravi am 2 Mär. 2019
doc dlmwrite % see precision option

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by