using a matrix in a calculation

1 Ansicht (letzte 30 Tage)
joseph
joseph am 1 Mai 2023
Kommentiert: Akira Agata am 1 Mai 2023
i am trying to compute the equation:
vr = (v0*r)/(sqrt(r^2+(w*l-1/(w*c))^2));
where everything in the equation is a scalar and w is a matrix. However when I run this code I get an error that states:
Error using /
Matrix dimensions must agree.
I dont understand how the dimensions wouldn't agree in this situation.

Antworten (2)

Akira Agata
Akira Agata am 1 Mai 2023
To do an element-wise calculation of an equation to a matrix, you should add dot (.) just before operator, like:
vr = (v0*r)./(sqrt(r^2+(w*l-1./(w*c))^2));
  2 Kommentare
joseph
joseph am 1 Mai 2023
This worked, thank you so much
Akira Agata
Akira Agata am 1 Mai 2023
Let me correct one typo:
vr = (v0*r)./(sqrt(r^2+(w*l-1./(w*c)).^2)); % need dot (.) before ^ operator, too

Melden Sie sich an, um zu kommentieren.


Matt J
Matt J am 1 Mai 2023
Use element-wise operators .*, ./, and .^

Kategorien

Mehr zu Creating and Concatenating Matrices 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