有人請告訴我如何改變座標軸的顏色。當我運行下面的代碼時,我會以黑色的顏色顯示軸上的時間和振幅值,這是默認值。我想改變它的顏色。我設法改變了標籤的顏色。在Matlab中,如何更改軸的顏色?
dt = 0:0.2:50;
y = 2*pi*sin(dt);
subplot(211)
plot(dt,y,'r');
grid on
xlabel('Time','color','r')
ylabel('Amplitude','color','r')
z=pi*cos(dt);
subplot(212)
plot(dt,z,'g')
grid on
xlabel('Time','color','g')
ylabel('Amplitude','color','g')
你讀過[軸屬性](https://se.mathworks.com/help/matlab/ref /axes-properties.html)? –