How can I create a graphic which variables are in a cell array?

1 visualización (últimos 30 días)
Miriã  Gollmann
Miriã Gollmann el 17 de Jun. de 2018
Comentada: Walter Roberson el 17 de Jun. de 2018
How can I create a graphic which variables are in a cell array, with command mesh?

Respuestas (1)

Walter Roberson
Walter Roberson el 17 de Jun. de 2018
You cannot do that without deferencing the cell array, such as in
mesh(MyCell{1}, MyCell{2}, MyCell{3})
  2 comentarios
Miriã  Gollmann
Miriã Gollmann el 17 de Jun. de 2018
I have one cell array. So, when I do this command, the message "Z must be a matrix, not a scalar or vector" show up.
Do you know what I have to do?
Walter Roberson
Walter Roberson el 17 de Jun. de 2018
The above command shows one cell array with three entries in it.
You would get that error message if you called
mesh(Z)
or
mesh(X, Y, Z)
but your Z was not a numeric 2D array, such as if it was a vector or if it was 3D.

Iniciar sesión para comentar.

Categorías

Más información sobre Cell Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by