Generate a pdf with plot and table as output
70 views (last 30 days)
Show older comments
Mareike Fischer
on 5 Oct 2021
Commented: Mareike Fischer
on 10 Nov 2021
Hi,
I'm wondering wether there is a way to generate a pdf that consists a plot and a table unterneath. Something like a combination of the functions writetable and saveas maybe?
Thanks a lot!
0 Comments
Accepted Answer
Prateek Rai
on 8 Oct 2021
To my understanding, you want to generate a pdf that consists of a plot and a table underneath.
You can use the live script to generate this.
Step 1: Create a live script.
Step 2: Write the code for plot. For Example:
a = 1:5:50;
b = 1:10:100;
plot(a,b)
Step 3: Write the code for table in the next section of live script. For Example:
rownames = {'Row1', 'Row2', 'Row3'};
column1 = [1; 2; 3];
column2 = [4; 5; 6];
table(column1, column2, 'RowNames', rownames)
Step 4: Now you can customize the way you want your output by changing the view.
Step 5: Now you can export the code to pdf. There is an "Export to pdf" option in the Save menu on the home tab. Click the down arrow in the save menu to expand the menu and see this and other options.
This will include the plot as well as table both in the pdf. You can also include or exclude your code based on the view you selected.
You can refer to Live Scripts MathWorks documentation page to learn more on live scripts and changing views of live scripts.
More Answers (0)
See Also
Categories
Find more on Tables 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!