UIAxes
在 Matlab 应用程序设计器中不支持非数字数据,例如graph
绘图,在 UI 框架内有什么替代方法吗?
在指南中我这样做:
% --- Executes on button press in Visualize.
function Visualize_Callback(hObject, eventdata, handles)
a = [1 2 3 4];
b = [2 3 4 1];
g = graph(a,b);
p = plot(g);
axis off
单击例如Visualize
按钮,我将在指南图中显示图表。框架。
我尝试在 App Designer 中执行此操作,并且可以绘制数值,但是对于图形可视化,我没有找到正确的方法。
methods (Access = private)
% Button pushed function: VisualizeButton
function VisualizeButtonPushed(app, event)
a = [1 2 3 4];
b = [2 3 4 1];
g = graph(a,b);
ax = app.UIAxes;
plot(ax,g)
end
end