誰か、軸の色を変更する方法を教えてください。以下のコードを実行すると、軸上の時間と振幅の値がデフォルトの黒色で取得されます。色を変えたい。私はラベルの色を変えることができました。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')
あなたは[Axesプロパティ](https://se.mathworks.com/help/matlab/refを読みました/axes-properties.html)? –