for i=1:length (file)
A = imread (file(i).name);
B = imresize (A,[200 200]);
imwrite (B," ? "); # Here is where I am stuck
end;
do I have to use an array of strings for the filename option in imwrite and index through those string, if so can you tell me how?