i need to find variable x and the error is " Undefined function or variable 'x'. "

1 Ansicht (letzte 30 Tage)
>> a=0:2:20; >> y=((1/x)*(exp(-x/a)))+((1/a)*(Ei(-x/a)))==1

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 11 Nov. 2017
A couple of things. In the code you show Ei is not defined and it looks like you need to solve the equation for different a.
Just to get you started: you could use fsolve inside a loop to step through all the different values for a. In the following I picked random values for the parameters to show you how to set up the problem:
a = 1; Ei = 1;
fun = @(x) ((1/x)*(exp(-x/a)))+((1/a)*(Ei*(-x/a))) - 1;
x0 = 1;
xs = fsolve(fun,x0);
fun(xs)

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by