a function to save a plot as a (compressed) image file.
이전 댓글 표시
i wanted to know which function can be used to save a plot as compressed image
답변 (2개)
Voss
2024년 1월 9일
0 개 추천
Anjaneyulu Bairi
2024년 1월 10일
Hi,
I understand that you are trying to save a plot as an image file.
"exportgraphics" function is used to save the plot as an image file.
Here is the sample code for how to save a plot as an image file.
plot(rand(5,5))
ax = gca;
exportgraphics(ax,'LinePlot.jpg')
Refer the below documentation link for more information
Hope it helps to resolve your query.
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!