Solve system of equations graphically
이전 댓글 표시
Hello, I am a total beginer with matlab and need to solve a system of equations graphically
Here is the system of equations:

Thanks in advance!
댓글 수: 3
I tested your code:
x = -5:0.05:5;
y1 = x.^3;
y2 = 6./x;
plot(x, y1, x, y2)
xticks([-5:5])
답변 (1개)
Alternatively, you can also do like this:
Solve or plot this polynomial:

x = -2:0.01:2;
y = x.^4 - 6;
plot(x, y), grid on
yline(0, '--')
카테고리
도움말 센터 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


