How can I plot in GUIDE using plotmatrix function?
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Interactive Control and Callbacks en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!