How do i plot this quadratic graph?
이전 댓글 표시
I'm trying to plot this quadratic graph. For some reason it looks like this. It's not crossing the x axis for some reason the x axis are down. I need to fix it please.
This is the graph and the code.
댓글 수: 2
Setsuna Yuuki.
2020년 11월 22일
that depends on the values of "a" "b" and "c", perhaps those values do not allow zero crossing.
Yaseen Noaman
2020년 11월 22일
답변 (1개)
x = -10:10;
y = polyval([1 -2 -4],x);
plot(x,y)
r = roots([1 -2 -4])
text(r(1),0,'\leftarrow Root')
text(r(2),0,'\leftarrow Root')
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!