How can I plot in GUIDE using plotmatrix function?

I'm working on a GUI and I need to plot a scatter plot matrix. I'm used to code in GUIDE like this:
X = [1 2 3; 4 5 6; 7 8 9];
plot(handles.axes1,X);
But when I write down:
X = [1 2 3; 4 5 6; 7 8 9];
plotmatrix(handles.axes1,X);
I get an empty figure.
How can I insert a plotmatrix in a GUI?

 採用された回答

Jan
Jan 2016 年 12 月 5 日
編集済み: Jan 2016 年 12 月 5 日

0 投票

Your code uses the axes handle "handle.axes1" for plotting. But either "handles" should be unknown, the axes should have been destroyed before, or you draw to the figure created by GUIDE, if this is open. In most cases an error message in the command window should reveal the problem.
The solution is easy: Create the wanted axes obejct manually:
axesH = axes;
X = [1 2 3; 4 5 6; 7 8 9];
plotmatrix(axesH, X);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

質問済み:

2016 年 12 月 5 日

編集済み:

Jan
2016 年 12 月 5 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by