Clear Filters
Clear Filters

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

3 views (last 30 days)
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;

Answers (1)

KSSV
KSSV on 4 Sep 2019
syms t ;
v = 4.8626;
w = 4.4721;
x=0.17;
f = x - t*v*exp(-w*t)==0 ;
s = double(solve(f)) ;

Categories

Find more on Line Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!