How can I plot this function f(x) = (sinx)/(x^2 4x 3) using suitable interval

조회 수: 2 (최근 30일)
How can I plot this function f(x) = (sinx)/(x^2+4x+3) using suitable interval and compute it's fourth derivative

채택된 답변

Image Analyst
Image Analyst 2019년 9월 18일
Sounds like homework, so here is a hint:
Try linspace() to compute x, then
y = sin(x) ./ (x.^2 + 4 * x + 3) ;
plot(x, y, 'b-');
Try different starting and stopping values for x in linspace() until you get what you think is an appropriate interval.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by