Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マトリックスがある場合は、次のように言います
a = [1 2 3; 4 5 6]
と
b = [2 2 2; 3 3 3]
matlabでa(b)を実行すると、次のような答えが得られます
a(b) = [4 4 4; 2 2 2]
ここで正確に何が起こっているのですか?