舉例: 一個cell A=cell(2,2) A = [] [] [] [] 我想 把 B = 1:2 放到 A 的 {1,1} 和 {1,2} 中 就是讓 A = [1] [2] [] [] 但是嘗試了: A{1,1:2} = B 出現錯誤訊息: The right hand side of this assignment has too few values to satisfy the left hand side. 嘗試了 用 A{1,1:2} = {B} 也還是一樣... 請問該怎麼做