E(z)=(lambda*z*R)/(2*E_initial*((z.^2+R^2)^(3/2)))
显示 更早的评论
回答(1 个)
Walter Roberson
2017-9-16
E = (lambda .* z .* R) ./ (2 .* E_initial .* ((z.^2 + R.^2).^(3/2)))
2 个评论
Maria V Alberico
2017-9-17
Walter Roberson
2017-9-17
What are the values for your variables? What result are you getting? What result do you expect to see?
Perhaps you need
E = @(z) (lambda .* z .* R) ./ (2 .* E_initial .* ((z.^2 + R.^2).^(3/2)))
if you are trying to create a function
类别
在 帮助中心 和 File Exchange 中查找有关 App Building 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!