-4
我有一個函數:MATLAB:通過電池參數
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」,「蒂蒂」}
當
我該怎麼做?
謝謝
你想如何處理該列表的功能?它會返回什麼? –
我只想說myStruct.name可以訪問一個字符串或一個字符串列表 – lola
但是「接受」它做什麼?例如,一個空函數將接受任何東西作爲它的輸入! –