Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Subscripted assignment dimension mismatch. (Matrices)

1 visualización (últimos 30 días)
mike
mike el 11 de Feb. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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?

Respuestas (1)

Geoff Hayes
Geoff Hayes el 11 de Feb. de 2017
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.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by