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

4 visualizaciones (últimos 30 días)
ray helou
ray helou el 4 de Sept. de 2019
Comentada: darova el 4 de Sept. de 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;

Respuestas (1)

KSSV
KSSV el 4 de Sept. de 2019
syms t ;
v = 4.8626;
w = 4.4721;
x=0.17;
f = x - t*v*exp(-w*t)==0 ;
s = double(solve(f)) ;

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by