If I have a equation, suppose x.^2+y.^3-10 ; if I put the values of x and y randomly, Can I find the zeroes of this equation at certain values of x and y ? for example x=3 and y=1, there is zero.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mahak SINGH CHAUHAN
el 11 de Mzo. de 2014
Editada: Mahak SINGH CHAUHAN
el 27 de Sept. de 2019
If I have a equation, suppose x.^2+y.^3-10 ; if I put the values of x and y randomly, Can I find the zeroes of this equation at certain values of x and y ? for example x=3 and y=1, there is zero. Please help me..
0 comentarios
Respuesta aceptada
Más respuestas (1)
Matt J
el 11 de Mzo. de 2014
Editada: Matt J
el 11 de Mzo. de 2014
Given a fixed value of x, you can find one corresponding y at which the expression is zero as follows
x=3;
f=@(y) x.^2+y.^3-10;
y_zero = fzero(f, y_guess);
Although, when f() is a polynomial, as in your example, it would be more efficient to use ROOTS instead of FZERO. Also, ROOTS will find you all solutions y for that x, instead of just one.
Similarly for given y, you can find one associated x as follows
y=1;
f=@(x) x.^2+y.^3-10;
x_zero = fzero(f, x_guess);
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!