我有一个功能:
function myFunc(myStruct)
% file can contains one or a list of files
file = {fullfile(pwd,myStruct.name)}
end
从另一个文件,当我调用 myFunc
myStruct.name = {'toto','titi','tata'}
myFunc(myStruct);
I got an error ,function isn't definied for cell
我想将一个字符串或字符串列表传递给 myStruct.name 字段:我的意思是 myStruct.name 可以接受一个参数 'toto' 或参数列表 {'toto','titi'}
什么时候
我怎么能那样做?
谢谢