a= struct('a1',{1,2,3},'a2',{4,5,6})
訪問結構數據(matlab)
怎樣才能得到1的值;
我嘗試使用a.a1 {1},它返回錯誤
>> a.a1{1}
??? Field reference for multiple structure elements that is followed by more reference blocks is an
error.
我如何才能獲得1?謝謝。
編輯 A = struct{'a1',[1 2 3],'a2',[4 5 6]}
我怎樣才能訪問1.我用A(1).a1
但我得到1 2 3