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