For Loop iteration only displays last plot in PPT slides

조회 수: 5 (최근 30일)
Zack Morris
Zack Morris 2023년 11월 29일
댓글: Zack Morris 2023년 12월 8일
I created a code to display my plots onto a Powerpoint (PPT) slide. The issue lies with MATLAB would generate all the plots but would only display the last plot on all the PPT slides. So far the only method is to copy the for loop, change the range (ex: 1:1, 2:2, 3:3, etc) and the "plot.png" numerical. I want to eliminate this tedious method and have an easier method for each slide to display each corresponding plot.
In this example length(fileList) = 6. The fileList respresents the 6 plots generated in this example. Prior I had length(fileList) in the for loop but it would only display the last plot on the slides.
X1 = length(fileList);
for j = 1:1 %length(fileList)
imgFIG = openfig(strcat(fileList(j).folder,'\',fileList(j).name));
saveas(imgFIG,'plot.png');
imgPNG = imread('plot.png');
imgPNG2 = imresize(imgPNG, 1.5);
imwrite(imgPNG2,'plot2.png')
imgPNG3 = Picture('plot2.png');
fName = fileList(j).name;
z = fName(27:28);
dataSlides = add(ppt,'Title and Content');
newTitle = strcat('Step', {' '}, z,' Simulations');
replace(dataSlides,'Title', newTitle);
replace(dataSlides,'Content', imgPNG3);
clearvars -except j pL ppt directory fileList dirSize X1
end
for j = 2:1:X1
imgFIG = openfig(strcat(fileList(j).folder,'\',fileList(j).name));
saveas(imgFIG,'plot4.png');
imgPNG = imread('plot4.png');
imgPNG2 = imresize(imgPNG, 1.5);
imwrite(imgPNG2,'plot5.png')
imgPNG3 = Picture('plot5.png');
fName = fileList(j).name;
z = fName(27:28);
dataSlides = add(ppt,'Title and Content');
newTitle = strcat('Step', {' '}, z,' Simulations');
replace(dataSlides,'Title', newTitle);
replace(dataSlides,'Content', imgPNG3);
clearvars -except j pL ppt directory fileList dirSize X1
end
close(ppt);
rptview(ppt);
end
  댓글 수: 8
Mathieu NOE
Mathieu NOE 2023년 12월 4일
hello again
seems we are now both confused here .
1/ yes my code has nothing to do with yours , it's just an example how to use the suggested FEX submission to do the job - in my eyes, with little work on your side
2/ no , I am not asking for more code from your side , because I cannot help you there , as I cannot run it (I don't have the ReportGenerator Toolbox)
Zack Morris
Zack Morris 2023년 12월 4일
Lol yea i think there was just misunderstanding.
  1. You think this is the only effective method to resolving my issue of the for loop only plotting the last generated plot on all the PPT slides?
  2. I'm looking at the exportToPPTX. Is there a way to add iteration so that i don't have to do "pptx.addSlide('Layout','Two Content');" continuously? I have other examples where I'll have to create 20+ slides.

댓글을 달려면 로그인하십시오.

답변 (1개)

Constantino Carlos Reyes-Aldasoro
Try using
drawnow
after view. It may just do the trick.
  댓글 수: 4
Constantino Carlos Reyes-Aldasoro
Not sure I understand what the problem is, is it that the figure is not the correct size inside powerpoint? Or that the image is not exported with the correct dimensions?
Zack Morris
Zack Morris 2023년 12월 8일
@Constantino Carlos Reyes-Aldasoro I'm just trying to implement a resizing command for the plots. Thy're just a little small on the PPT slides and I want to make them a little larger for easier visualization.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Update PowerPoint Presentation Content에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by