how do I put a title on a table
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to add a simple title to my table. why does this seem impossible!?
Or, Why can't I get the table I created using ModeAdvisor to display, or save into an Excel file?
F_FN = table(FN,FN_20,FN_40,FN_100);
0 Kommentare
Antworten (2)
Walter Roberson
am 29 Nov. 2017
"I want to add a simple title to my table. why does this seem impossible!?"
Because table objects were designed for computation, not for display.
"or save into an Excel file"
When you writetable() you can specify 'Range' to indicate where the table should begin. You can use this together with having written something else into the file using xlswrite()
0 Kommentare
KSSV
am 29 Nov. 2017
TO write your table into excel file use writetable. Read about it. https://in.mathworks.com/help/matlab/ref/writetable.html
0 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!