サンプルコードは次のとおりです。
クラスA:
classdef classA
properties
mapOfB
end
methods
function self = classA(names)
self.mapOfB = containers.Map();
for i = 1:numel(names)
self.mapOfB(names{i}) = classB(names);
end
end
end
end
クラス B:
classdef classB
properties
mapTest
end
methods
function self = classB(names)
self.mapTest = containers.Map();
for i = 1:numel(names)
self.mapTest(names{i}) = rand(1,3);
end
end
end
end
メインスクリプト:
names = {'one', 'two', 'three', 'four'};
a = classA(names);
a.mapOfB
a.mapOfB.keys
a.mapOfB('one')
a.mapOfB('one').mapTest
a.mapOfB('one').mapTest.keys
a.mapOfB('one').mapTest('one')
コンソール出力:
a.mapOfB('one').mapTest.keys
ans =
'four' 'one' 'three' 'two'
a.mapOfB('one').mapTest('one')
Error using subsref
Index exceeds matrix dimensions.
マップ内のマップ アイテムを呼び出すときに、インデックスがマトリックス ディメンションを超えているというエラーが発生する理由がわかりません。それはMatlabの制限ですか?