E(z)=(lambda*z*R)/(2*E_initial*((z.^2+R^2)^(3/2)))
Afficher commentaires plus anciens
Why is this wrong ? It won't give me an answer
Réponses (1)
Walter Roberson
le 16 Sep 2017
E = (lambda .* z .* R) ./ (2 .* E_initial .* ((z.^2 + R.^2).^(3/2)))
2 commentaires
Maria V Alberico
le 17 Sep 2017
Walter Roberson
le 17 Sep 2017
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
Catégories
En savoir plus sur App Building dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!