Printing NetList on Notepad in a proper format
Show older comments
Hi, I have generated a SPICE NetList as a 4 column table in Matlab. When I print it to a text file using 'writetable' command,the columns in the text file generated are very haphazard. I want the output text file to contain the table in the same format as is given by the command window output, like a neat matrix.
Answers (1)
Walter Roberson
on 19 Sep 2017
nrow = size(YourTable, 1);
fid = fopen('YourOutputFile.txt', 'wt');
for K = 1 : nrow
fprintf(fid, '%-20s %-20s %8f %8f\n', YourTable{K,1}, YourTable{K,2}, YourTable{K,3}, YourTable{K,4});
end
fclose(fid);
3 Comments
tables have height and width methods, so
nrow = height(YourTable);
is more aesthetically pleasing and less demanding on the brain, in my opinion.
Himanshi Rani
on 20 Sep 2017
Edited: Himanshi Rani
on 20 Sep 2017
Walter Roberson
on 20 Sep 2017
Either you accidentally used YourTable(K,1) instead of YourTable{K,1} or else your table contains cell arrays inside the entries. If it does contain cell arrays inside the entries then you need to define how you want those multiple entries to be saved.
It would help if we had a representative sample of your table.
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!