由於DMR最高審計機關,它的necesary設置「CurrentAxes」。例如,如果要將標記名稱'axis1'繪製到座標軸上,則應該簡單地添加:
axes(handles.axes1);
添加到您的代碼中。以下是包含'axis1'和'axis2'的圖形的簡單示例,使用上面的代碼(已更正)代碼。我不太確定你想在你的GUI本身或一個單獨的數字軸上繪圖。我希望我涵蓋了這兩種情況。
function varargout = Test(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Test_OpeningFcn, ...
'gui_OutputFcn', @Test_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before Test is made visible.
function Test_OpeningFcn(hObject, eventdata, handles, varargin)
% Choose default command line output for Test
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
plot(handles.axes2,-2*pi:0.1:2*pi,sin(-2*pi:0.1:2*pi));
% Initialize and clear plot window
MyVariable = ones(11,6);
MyVariable(1:5,1) = 0;
axes(handles.axes1);
for x = 1:11
for y = 1:6
if (MyVariable(x,y) == 1)
rectangle('position', [x-1, y-1, 1, 1] ,'EdgeColor', 'w', 'facecolor', 'k');
elseif(MyVariable(x,y) == 0)
rectangle('position', [x-1, y-1, 1, 1], 'facecolor', 'w');
end
end
end
title('West Wall Array',...
'FontWeight','bold')
figure(2); clf;
for x = 1:11
for y = 1:6
if (MyVariable(x,y) == 1)
rectangle('position', [x-1, y-1, 1, 1] ,'EdgeColor', 'w', 'facecolor', 'k');
elseif(MyVariable(x,y) == 0)
rectangle('position', [x-1, y-1, 1, 1], 'facecolor', 'w');
end
end
end
title('West Wall Array',...
'FontWeight','bold')
function varargout = Test_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
你的嚮導GUI應該是這樣的:
而且你的結果是這樣的:
謝謝。這已經解決了我的問題,雖然座標軸值仍然出現在我的圖中3,這是不需要的。 這是我擁有的圖像:https://dl.dropboxusercontent.com/u/104069213/GUI%20example%201.png圖'西牆陣列'正是我想要的格式。標題爲「陣列」的其他圖像在圖像上具有值,並且圖像傾斜。在將它們放入GUI之前,它們看起來並不像這樣。這是他們看起來像單獨的數字,就像'西牆陣列'一樣: https://dl.dropboxusercontent.com/u/104069213/GUI%20example%202.png 有什麼想法? – loco
沒關係。我解決了我的問題。再次感謝。 – loco