|
On Nov 18, 11:35 am, "Arie Driga" <a_dr...@yahoo.com> wrote:
> Hi all!
>
> I have several graphic files in tiff which are needed to be imported to matlab and to be read using imread.
>
> An m-file has been provided for me, however I have to write down all the file's name into the function. Sometime it can be tiresome if the number of file reaches more than 10.
>
> The naming of the files are the same except for small difference.
>
> Is there any way to make it more convenience for me?
>
> Thanks!
You can either use a for loop or something along those lines to create
a cell array holding all the different filenames, or you could use the
uigetfile function with multiple selection turned on to select all the
files you want to process
|