0
gplotをファイルに保存/出力する方法を提案できますか?私はまだMatlabで物事を把握しようとしています。ありがとう。gplotの出力をmatlabのファイルに保存するには?
A=[0,1,1,1,1,1,0,0,0;
1,0,1,0,0,0,1,0,0;
1,1,0,1,0,0,1,0,0;
1,0,1,0,1,0,0,1,0;
1,0,0,1,0,1,0,0,1;
1,0,0,0,1,0,0,0,1;
0,1,1,0,0,0,0,1,0;
0,0,0,1,0,0,1,0,1;
0,0,0,0,1,1,0,1,0];
coords=[0 0;
.5 0;
1 0;
0 .5;
.5 .5;
1 .5;
0 1;
.5 1;
1 1];
gplot(A,coords)
ありがとうございます。わかった。 – Naga
gcf(現在の図のハンドル)を使用することもできます。saveas(gcf、 'filename'、 'bmp'); – Serg