필터 지우기
필터 지우기

How can solve the explicit equation by using matlab

조회 수: 8 (최근 30일)
zahid
zahid 2016년 4월 16일
답변: Torsten 2016년 4월 18일
Dear all How can i find the value of b (a constant greater than zero) in the following equation by using Matlab function
exp(-b^2/2)/b^3=1.39
I am looking forward to your help
With best wishes
zahid khan

채택된 답변

Torsten
Torsten 2016년 4월 18일
fun=@(x)exp(-x.^2/2)./x.^3-1.39;
sol=fzero(fun,[0.5 1]);
Best wishes
Torsten.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by