find t and Use a graphical method to locate the initial estimate

조회 수: 1 (최근 30일)
ray helou
ray helou 2019년 9월 4일
댓글: darova 2019년 9월 4일
find t and Use a graphical method to locate the initial estimate
x = t*v*exp(-w*t)
v = 4.8626;
w = 4.4721;
x=0.17;

답변 (1개)

KSSV
KSSV 2019년 9월 4일
syms t ;
v = 4.8626;
w = 4.4721;
x=0.17;
f = x - t*v*exp(-w*t)==0 ;
s = double(solve(f)) ;

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by