method returning image file names for design Returns cell array of same dimension of image list $Id$
0001 function P = image_names(D) 0002 % method returning image file names for design 0003 % Returns cell array of same dimension of image list 0004 % 0005 % $Id$ 0006 0007 P = {}; 0008 if has_images(D) 0009 VY = get_images(D); 0010 P = reshape({VY.fname},size(VY)); 0011 end