. Find the derivative of ๐ฆ = ๐ฅ^ 2 + 4*๐ฅ โ 6 at (3,5) and plot the function and derivative curves. Use the legend option for labelling the curve.
์กฐํ ์: 1 (์ต๊ทผ 30์ผ)
์ด์ ๋๊ธ ํ์
vidya g
2021๋
11์ 12์ผ
ํธ์ง: John D'Errico
2022๋
1์ 2์ผ
. Find the derivative of ๐ฆ = ๐ฅ ^2 + 4๐ฅ โ 6 at (3,5) and plot the function and derivative curves. Use the legend option for labelling the curve.
๋๊ธ ์: 3
Xiao Yangcong
2021๋
11์ 12์ผ
There is an error in this question. Please describe the problem again.
์ฑํ๋ ๋ต๋ณ
Xiao Yangcong
2021๋
11์ 12์ผ
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/798174/image.png)
๋๊ธ ์: 1
John D'Errico
2022๋
1์ 2์ผ
ํธ์ง: John D'Errico
2022๋
1์ 2์ผ
Please don't do homework assignmets for students. It does not helpp them, only teaching them they can find the answer to their homework here, and we don't want that.
์ถ๊ฐ ๋ต๋ณ (1๊ฐ)
Image Analyst
2021๋
11์ 12์ผ
Hint -- use the plot() and legend() functions:
x = linspace(0, 6, 1000); % Define range for x as [0, 6] or whatever you want.
y = x .^ 2 + 4 * x โ 6 % Your formula.
plot(
yDerivative = % Some other function of x. I'm sure you know Calculus.
plot( % Plot yDerivative vs. x. Use a different color.
legend(
% Find slope at x=3:
yDerivative = % same function but use 3 instead of x
% Optional (unasked for) stuff to make the plot pretty;
title('y = x .^ 2 + 4 * x โ 6 and its derivative', 'FontSize', 18);
xlabel('x', 'FontSize', 18);
ylabel('y', 'FontSize', 18);'
grid on
Fill out the missing code. If you can't figure it out, read this:
๋๊ธ ์: 0
์ฐธ๊ณ ํญ๋ชฉ
์นดํ ๊ณ ๋ฆฌ
Help Center ๋ฐ File Exchange์์ Line Plots์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!