E(z)=(lambda*z*R)/(2*E_initial*((z.^2+R^2)^(3/2)))
古いコメントを表示
Why is this wrong ? It won't give me an answer
回答 (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!