|
On Nov 24, 11:44=A0am, "Prasenjeet Patil" <prasenjeet.pa...@hotmail.com>
wrote:
> I am a newbee.
> I have downloaded the code from Mathworks.It says Input: x (an NxN image)=
.
> What does NxN mean & n =3D length(x) in this program Also what should I d=
o to get all the images using subplot.
> Thanks!
----------------------------------------------------------------------
Prasenjeet:
x may be the filename of the image. Otherwise you'd have to input the
NxN image itself, which is a N rows by N columns numerical array. It
can be of any numerical type (integer, float, complex, etc.). Getting
the length of x is the number of characters in the filename string (if
it's a string), or the number of columns in the image (if it's a
rectangular or square numerical array). You don't get images using
subplot. You already need to have the images. Then subplot just
allows you to display several images in a table-like format on a
single window.
Regards,
ImageAnalyst
|