正如标题所说,只是想知道是否有一个函数可以作为字段名(http://www.mathworks.co.uk/help/matlab/ref/fieldnames.html),但对于单元格。
所以如果我有类似的东西:
a = imread('redsquare.bmp');
b = imread('bluesquare.bmp');
c = imread('yellowsquare.bmp');
d = imread('greysquare.bmp');
e = {a, b, c, d};
我正在尝试检索:a、b、c、d 或不带扩展名的图像名称。
我试过fn = fileparts(e)
and fntemp = cell2struct(e,2)
,但我无法让它工作。
希望这是有道理的谢谢