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

4 Ansichten (letzte 30 Tage)
ray helou
ray helou am 4 Sep. 2019
Kommentiert: darova am 4 Sep. 2019
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;

Antworten (1)

KSSV
KSSV am 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)) ;

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by