Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how to create a 3d plot for this matrix

1 visualización (últimos 30 días)
Iyad Al-Najjar
Iyad Al-Najjar el 27 de Oct. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Thanks in advanced
I have a matrix with zeros and ones elemants where one means the system is stable and zero means the system is unstalbe.
I used contour to get a 2d figure to see the stable and unstable regions and everything worked fine.
After that, I created a new 3by3 matrix with the same concept of zeros and ones.
I am trying to make a 3d figure of that matrix but I do not know if it is possible or not and what is the best.
it is like if there is 1 in that point(elemant) then put a colour or something and if there is zero do nothing.
I hope that the question is clear enough.

Respuestas (1)

KSSV
KSSV el 27 de Oct. de 2020
Editada: KSSV el 27 de Oct. de 2020
Read about spy.
A = randi(10,10) ;
A(A>1) = 0 ;
spy(A)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by