Info

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

how to view the matrix in 2 dimension of the following values

1 visualización (últimos 30 días)
ajith
ajith el 10 de En. de 2013
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
how to view the matrix in 2 dimension of the following values
<5x486x586 double>
  2 comentarios
Walter Roberson
Walter Roberson el 10 de En. de 2013
That is a 3-dimensional matrix. You could view slices of it in 2D.
Are you wanting to look at the values, or are you wanting to draw a graph?
ajith
ajith el 10 de En. de 2013
I WANT TO KNOW THE VALUES

Respuestas (1)

Andrei Bobrov
Andrei Bobrov el 10 de En. de 2013
Editada: Andrei Bobrov el 10 de En. de 2013
d = randi(1000,5,486,586); % your array
out = reshape(d,size(d,1),[]); %the horizontal orientation
or
d1 = num2cell(d,[1 2]);
out = cat(1,d1{:}); % the vertical orientation

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by