Home > Net >  Solve systems of equations graphically on Octave
Solve systems of equations graphically on Octave

Time:11-04

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 solve this equation on Octave graphically? There is the system: Graphing Plot Intersections

clf;
x = (-5: 1: 5);
y = sqrt(29 - x.^2);
plot(x,y,'.-');
hold on

x = (-5: 1: 5);
y = sqrt(9   4*x.^2);
plot(x,y,'.-');
  • Related