Define a variable from an equation
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ly
el 21 de Nov. de 2016
Comentada: ly
el 21 de Nov. de 2016
Hi,
I have an equation with x and y are variable and a, b and d are constant.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/158250/image.png)
with x =[1:1:10];
How to define y variable?
2 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Nov. de 2016
As I posted in your earlier question,
y1 = @(b, d, x) -b .* (exp(-(2/3) .* lambertw(-3 .* (b.^3 ./ a.^2).^(1/2) .* d.^3 ./ x.^3)) .* d.^2 - x.^2) ./ x.^2
y2 = @(b, d, x) -b .* (exp(-(2/3) .* lambertw(3 .* (b.^3 ./ a.^2).^(1/2) .* d.^3 ./ x.^3)) .* d.^2 - x.^2) ./ x.^2;
Now use y1(b, d, 1:10) and y2(b, d, 1:10)
Note: you will need the Symbolic Toolbox for lambertw, but see also https://www.mathworks.com/matlabcentral/fileexchange/43419-the-lambert-w-function
3 comentarios
Walter Roberson
el 21 de Nov. de 2016
Symbolic toolbox with x symbolic, and solve() . You can then matlabFunction() and pass the numeric x values in .
The y1 and y2 are there because there are two solutions.
Más respuestas (1)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!