How I can show one plane of a 3D matrix double

6 visualizzazioni (ultimi 30 giorni)
Hello,
I have a matrix
A=randi([0,1],[256,256,5])
and I want to show the plane B in a top view image like imshow()
B=A(255,:,:)
But imshow(B) does not work because the image of B considered Multi-plane, B is 256*1*5 double

Risposta accettata

KSSV
KSSV il 28 Mag 2020
To use imshow the input should be a matrix .....you may try
imshow(squeeze(B))
  3 Commenti
KSSV
KSSV il 28 Mag 2020
Thanks is accepting the answer...:)
Hassan Zhairabany
Hassan Zhairabany il 28 Mag 2020
Modificato: Hassan Zhairabany il 28 Mag 2020
:) I forgot to accept it at first. now accepted

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by