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!