How do I type this equation?

1 次查看(过去 30 天)
I need to write the equation
P = (10/(R+20))^2
When R starts at 0 and ends at 40 with step size of 0.1. So far, I have
R = [0:0.1:40];
P = R * (10/(R + 20))^2.
I've tried a few different ways, and I keep getting error message Matrix Dimensions Must Agree. How would I do this? I'm still very new to Matlab and I'm don't understand how everything works.

采纳的回答

Walter Roberson
Walter Roberson 2017-11-25
编辑:Walter Roberson 2017-11-25
P = R .* (10./(R + 20)).^2.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by