我想用xfpoly
生成邊界並使用xs2pdf
保存它們。然後,我想在這些邊界中顯示2個函數的圖形,爲這些函數添加圖例並再次保存圖像。Scilab - Legend只適用於一組特定的功能
我的代碼如下...
clear; clc; xdel(winsid());
t = -2:0.01:2;
x_1 = t.^2; x_2 = t.^4;
xfpoly([-3 -2 -2 -3], [0 0 16 16], color('grey'));
ax = gca();
ax.auto_clear = 'off'; ax.data_bounds = [-3, 0; 3, 3];
ax.box = 'on';
ax.axes_visible = ['on','on','off']; ax.tight_limits = ['on','on','off'];
xfpoly([2 3 3 2], [0 0 16 16], color('grey'));
xfpoly([-1 1 1 -1], [1 1 16 16], color('grey'));
xs2pdf(gcf(), 'fig_1');
plot2d(t, [x_1', x_2'], [color('green'), color('red')]);
legend(['t^2'; 't^4']);
leg_ent = gce();
leg_ent.text = ['';'';'';'t^2'; 't^4']
xs2pdf(gcf(), 'fig_2');
如果我的回答對你有幫助,你可以讚揚它。我很高興我能提供幫助。 – Attila
我喜歡upvote。但是我的名聲太低,不能這樣做...... – ska109