Info
此问题已关闭。 请重新打开它进行编辑或回答。
Subscripted assignment dimension mismatch. (Matrices)
1 次查看(过去 30 天)
显示 更早的评论
I'm trying to define three matrices -- a(i), b(i), and c(i) -- for the values of 1,2, and 3. (see code)
for i = 1:3,
a(i) = [(Sy - S(i)) Tyz; Tyz (Sz - S(i))];
b(i) = -[Txy Tyz; Txz (Sz - S(i))];
c(i) = [Txy (Sy - S(i)); Txz Tyz];
end
I keep getting the same error message, "Subscripted assignment dimension mismatch." How can I fix this?
0 个评论
回答(1 个)
Geoff Hayes
2017-2-11
mike - the error message is telling you that you are making an invalid assignment. For example, the following produces the same error
a = zeros(5,1);
a(:,1) = [1:4]';
because we are trying to assign a column of four elements to a column that is expecting five elements.
Which line of code is generating your error? How have you initialized a, b, and c? Try using the debugger to step through your code and make sure that the assignments that you are attempting make sense given the initialization of the variables.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!