Info

This question is closed. Reopen it to edit or answer.

Please let me know why this error is popping up even when I use element wise operator??

1 view (last 30 days)
c=(kb^4)/(2*(pi^2)*vd*(h^3)*A*exp(-td/(3.*T)));
T here is an array while all the other parameters are constant. I'm getting the following error in the statement
Error using /
Matrix dimensions must agree.
Error in hw4 (line 11)
c=(kb^4)/(2*(pi^2)*vd*(h^3)*A*exp(-td/(3.*T)));

Answers (1)

Walter Roberson
Walter Roberson on 5 Nov 2017
You did not use elementwise division with the expression involving T. You have td/( instead of td./(

This question is closed.

Community Treasure Hunt

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

Start Hunting!