Error using * Inner matrix dimensions must agree

1 Ansicht (letzte 30 Tage)
E. sarah
E. sarah am 27 Apr. 2016
Beantwortet: Andrei Bobrov am 28 Apr. 2016
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 Kommentar
Roger Stafford
Roger Stafford am 27 Apr. 2016
Please show us the results of:
size(w)
size(R)
size(c)
size(L)
size(j)
Then we can answer your question.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Muhammed Fasil
Muhammed Fasil am 28 Apr. 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.

Andrei Bobrov
Andrei Bobrov am 28 Apr. 2016
maybe so?
h=abs((j*w*R*c)./((j*w*R*c)-(w .* w*L*c)+1));

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by