Could someone explain the squeeze function

4 views (last 30 days)
I'm new to matlab and struggling to understand the squeeze function, what does it exactly do?
  1 Comment
KALYAN ACHARJYA
KALYAN ACHARJYA on 28 Aug 2018
As you changed the question, please ask a new question, don't edit the question again after getting the answer.

Sign in to comment.

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 28 Aug 2018
Edited: KALYAN ACHARJYA on 28 Aug 2018
Question: would it be possible to extract the row 1 column 2 value from each layer of myimage?
Yes
data1=myimage(1,2,:)
And As per title of the question RGB values extraction-
red=myimage(1,2,:,1);
green=myimage(1,2,:,2);
blue=myimage(1,2,:,3);
Same for second case.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!