Plotting mathematical functions in matplot
조회 수: 1 (최근 30일)
이전 댓글 표시
I need to plot this in python.
y=(1-x) ^3 -2.
-1≤ x ≤ 5.(How do I define this range?)
댓글 수: 0
채택된 답변
Sulaymon Eshkabilov
2021년 5월 22일
In MATLAB, you can plot it using:
y=@(x)((1-x).^3-2);
fplot(y, [-1, 5]);
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!