我们制作了一个代码,用于将绘图保存为图像。
%这是我们的情节的Matlab代码
h=figure(2); set(gcf, 'Visible', 'off');
plot(minD2out,plotAngle,'*r','linewidth',3);
xlabel('Depth (mm)')
ylabel('Left ANGLE (degrees) Right')
axis([0, 3000, -30, 30])
hold on;
grid on
print(h, '-dpng','PS2Plot.png');
//这是我们使用Matlab调用保存为图像的绘图的C#代码
button12.PerformClick();
ProcessStartInfo start = new ProcessStartInfo();
start.FileName = "C:\\Users\\Leno\\Desktop\\PS2 Final\\ThesisPS2FINAL.exe";
start.WorkingDirectory = "C:\\Users\\Leno\\Desktop\\PS2 Final";
start.WindowStyle = ProcessWindowStyle.Hidden;
start.CreateNoWindow = true;