E(z)=(lambda*z*R)/(2*E_initial*((z.^2+R^2)^(3/2)))
Mostrar comentarios más antiguos
Why is this wrong ? It won't give me an answer
Respuestas (1)
Walter Roberson
el 16 de Sept. de 2017
E = (lambda .* z .* R) ./ (2 .* E_initial .* ((z.^2 + R.^2).^(3/2)))
2 comentarios
Maria V Alberico
el 17 de Sept. de 2017
Walter Roberson
el 17 de Sept. de 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
Categorías
Más información sobre App Building en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!