Subplots Saveas Function Problem
이전 댓글 표시
Hello,
I did this graph configuration in Property Editor and generated the code. In my code i run it as follows:
X1=[1:6]
Y1=hsd
Y2=hi
Y3=td
Y4=ratio
graph(X1,Y1,Y2,Y3,Y4)
This is the final graph.

How can i save it automatically as a png format with saveas??
Example:
graphwrite=[[Filename],'fisico','.png'];
saveas(...,graphwrite)
채택된 답변
추가 답변 (4개)
KL
2017년 9월 12일
g1 = graph(X1,Y1,Y2,Y3,Y4);
saveas(g1,'filename.png')
Sérgio Querido
2017년 9월 12일
0 개 추천
댓글 수: 2
Walter Roberson
2017년 9월 12일
Please show the output for
which -all graph
Sérgio Querido
2017년 9월 12일
Sérgio Querido
2017년 9월 12일
Sérgio Querido
2017년 9월 12일
카테고리
도움말 센터 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!