Error using * Inner matrix dimensions must agree
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I enter this h=abs((j*w*R*c)./((j*w*R*c)-(w*w*L*c)+1)); but it told me that Error using * Inner matrix dimensions must agree how can i solve it?
1 comentario
Roger Stafford
el 27 de Abr. de 2016
Please show us the results of:
size(w)
size(R)
size(c)
size(L)
size(j)
Then we can answer your question.
Respuestas (2)
Muhammed Fasil
el 28 de Abr. de 2016
Dear E. sarah,
Follow matrix multiplication rule eg: If u want to multiple w*R where w has order AxB and R has order BxC then inorder them to be multiplied Ax B* B xC, B of both variable(w and R) should be same.
Check your variable orders as suggested by Roger.
0 comentarios
Andrei Bobrov
el 28 de Abr. de 2016
maybe so?
h=abs((j*w*R*c)./((j*w*R*c)-(w .* w*L*c)+1));
0 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!