0
嘗試瞭解矩陣索引。矩陣索引與另一個矩陣返回「下標索引必須是正整數或邏輯」
A = [2 3 0 0 5; 3 0 0 0 0];
B = [1 1 0 0 1; 1 0 0 0 0];
當我運行
A(1, B(1, :))
我期待
[2 3 5]
但是,相反,我得到的錯誤:
error: subscript indices must be either positive integers or logicals.