Solve systems of equations graphically
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, i've searched many webpages and yet can't find a specific and easy answer, so im writting here and hoping to get the answer. How do i plot them to see where the curves crosses graphically?
There is the system:

0 Commenti
Risposte (3)
Bjorn Gustavsson
il 1 Nov 2021
You can start investigating the surfaces of the functions f1(x,y) = x.^2+y.^2-29 and f2(x,y) = y.^2-4*x.^2-9 with something like this:
[x,y] = meshgrid(-10:0.01:10,-10:0.01:10);
surf(x,y,x.^2+y.^2-29,ones(size(x))),shading flat
hold on
surf(x,y,-4*x.^2+y.^2-9),shading flat
contour(x,y,x.^2+y.^2-29,[0 0],'r'),shading flat
contour(x,y,-4*x.^2+y.^2-9,[0 0],'b'),shading flat
axis([-10 10 -10 10 -100 50])
view(-37.5,70)
Then from that point you can go whatever direction you see fit. You can for example use this nice tool found on the FEX: fast-and-robust-curve-intersections.
HTH
0 Commenti
Dave B
il 1 Nov 2021
I think you're asking how to plot these two implicit functions: you can do that with fimplicit. To see where they cross, I suppose I'd probably make the axis limits a bit bigger, and a grid might be useful?
fimplicit(@(x,y)x.^2+y.^2-29)
hold on
fimplicit(@(x,y)y.^2-4*x.^2-9)
axis([-10 10 -10 10])
grid on
2 Commenti
Walter Roberson
il 1 Nov 2021
Octave is off-topic here. You can find Octave discussion lists mentioned at https://savannah.gnu.org/mail/?group=octave
(Sorry, but the purpose of Free Software Foundation projects such as Octave is to ruin the market for proprietary software. FSF believes that softwar ecompanies can and should survive solely by people hiring them to write software or to answer questions. So, if you have a question about Octave, you should be paying someone to answer it for you.)
Vedere anche
Categorie
Scopri di più su Octave in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

