Borrar filtros
Borrar filtros

Empty sym: 0-by-1

5 visualizaciones (últimos 30 días)
Delia Bosshart
Delia Bosshart el 24 de Mayo de 2021
Comentada: Star Strider el 26 de Mayo de 2021
I don't understand why matlab gives as an output "Empty sym: 0-by-1" to the following equation which I want to solve. I have used this equation many times with other numbers and it has always worked since. Thank you for the help!
syms x1
eqn = (10.5145 - 0.5 + 6.96.*x1 + (6-(31*(232.87.*(x1*12).^(-0.46)))/1000).*x1/60*1000 + 31.*(232.87.*(x1*12).^(-0.46))/1000.*0/60*1000)*0.0086 - 0.1475 - x1 == 0
vpasolve(eqn, x1)

Respuesta aceptada

Star Strider
Star Strider el 24 de Mayo de 2021
Exploring the function is often worthwhile. It apparently has a real root at about -0.45, so share that information with vpasolve:
syms x1
eqn = (10.5145 - 0.5 + 6.96.*x1 + (6-(31*(232.87.*(x1*12)^(-0.46)))/1000)*x1/60*1000 + 31*(232.87*(x1*12)^(-0.46))/1000*0/60*1000)*0.0086 - 0.1475 - x1 == 0;
f(x1) = (10.5145 - 0.5 + 6.96.*x1 + (6-(31*(232.87.*(x1*12)^(-0.46)))/1000)*x1/60*1000 + 31*(232.87*(x1*12)^(-0.46))/1000*0/60*1000)*0.0086 - 0.1475 - x1;
x1_s = vpasolve(real(f), -0.5)
x1_s = 
figure
fplot(real(f), [-1 1])
hold on
fplot(imag(f), [-1 1])
hold off
grid
legend('Real','Imag', 'Location','best')
.
  2 comentarios
Delia Bosshart
Delia Bosshart el 26 de Mayo de 2021
Thank you! Therefore the main problem is that I have a negative number in the root and that is why it can't solve the equation right?
Star Strider
Star Strider el 26 de Mayo de 2021
As always, my pleasure!
One problem is that solve identified 50 roots of that function, so there could be a number of them. However plotting it revealed only one .real root. It is a relatively complicated function. I have no idea what the other roots were, since solve did not calculate them. Plotting the real and imaginary parts of the function demonstrated its behaviour and led to the solution.

Iniciar sesión para comentar.

Más respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 24 de Mayo de 2021
Hi,
There is a typo in your eqn:
...1000.*0/60*1000)*0.0086
Good luck
  1 comentario
Delia Bosshart
Delia Bosshart el 24 de Mayo de 2021
does "Empty sym: 0-by-1" mean that it can't solve the equation and that is why you assume that there has to be a typo?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by