How do I remove a matrix from a published document?
Ältere Kommentare anzeigen
I want to publish a code that I wrote which involves large matrices filled with data, but I don't want to include the matrices in the published document because it adds on about 10 pages that I don't want or need and makes it look unprofessional.
How do I remove these from the published document?
Thank you
Antworten (1)
Sean de Wolski
am 7 Nov. 2013
Don't print them to the command line by putting a semicolon after them and don't call disp or fprintf with them.
Compare:
magic(5)
And
magic(4);
2 Kommentare
Brendan
am 7 Nov. 2013
Sean de Wolski
am 7 Nov. 2013
Can you attach an example *.m file that does this?
Kategorien
Mehr zu Software Development Tools finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!