1
我有兩個變量,即ft1 < 195x1 double>和ft2 < 195x1 double>和兩個軸即axis1和axis2(使用GUIDE創建)。 我想分別在這些軸上繪製這些變量。 我該怎麼做?使用GUI繪製多軸座標數據?
我有兩個變量,即ft1 < 195x1 double>和ft2 < 195x1 double>和兩個軸即axis1和axis2(使用GUIDE創建)。 我想分別在這些軸上繪製這些變量。 我該怎麼做?使用GUI繪製多軸座標數據?
這應該有所幫助,如果你有你的GUI的的把手,struture>按鈕回調例如內使用時,你應該已經知道了:
%1. make the first axes the current-axes:
axes(handles.axes1)
%2. plot:
plot(ft1,additional arguments...)
%3. make the second axes the current-axes:
axes(handles.axes2)
%4. plot again:
plot(ft2,additional arguments...)
謝謝盧修斯... – user3162506