Draw the curve X = y² +y - 4 %3D

icon
Related questions
Question
None
Draw the curve X = y2 + y - 4
Continue..
x=-2:0.01:2;
grid on;
x=(y.^2) + y – 4;
plot(x,y);
plot(y,x);
A = integral(y,-2,2)
y= @(x) (x.^2)-4
axis([-2.5 2.5 -4 2]);
y=-2:0.01:2;
Transcribed Image Text:Draw the curve X = y2 + y - 4 Continue.. x=-2:0.01:2; grid on; x=(y.^2) + y – 4; plot(x,y); plot(y,x); A = integral(y,-2,2) y= @(x) (x.^2)-4 axis([-2.5 2.5 -4 2]); y=-2:0.01:2;
Expert Solution
steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Storage Devices
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.