E(z)=(lamb​da*z*R)/(2​*E_initial​*((z.^2+R^​2)^(3/2)))

Respuestas (1)

Walter Roberson
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
Maria V Alberico el 17 de Sept. de 2017
Thank you but it's still not working.
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

Iniciar sesión para comentar.

Categorías

Más información sobre App Building en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 16 de Sept. de 2017

Comentada:

el 17 de Sept. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by