Borrar filtros
Borrar filtros

Create guess and Check loop in matlab

5 visualizaciones (últimos 30 días)
Xerxes Achaemenid
Xerxes Achaemenid el 5 de Jun. de 2021
Comentada: Xerxes Achaemenid el 5 de Jun. de 2021
How can I create a guess and check loop for solve this equation: y=(2*x)-((2*x^2)*(1-exp(-1/x)))==0.211
Is there another way to solve this question?

Respuesta aceptada

Chunru
Chunru el 5 de Jun. de 2021
y= @(x) (2*x)-((2*x.^2)*(1-exp(-1./x))) - 0.211; % define the function f(x)=0
x = fsolve(y, 0); % here x0 = 0;
help fsolve for more details.

Más respuestas (0)

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by