How do I plot the derivative of a function?
2 ビュー (過去 30 日間)
古いコメントを表示
Already have the derivative 1- (sinx)/(squar(x))-(squar(x))(cos(x)) just don't know how to plot it via code
0 件のコメント
回答 (3 件)
Sulaymon Eshkabilov
2022 年 10 月 1 日
編集済み: Sulaymon Eshkabilov
2022 年 10 月 1 日
To plot sin(2*x), e.g.:
syms x
fplot(x, sin(2*x), [-pi, pi]), grid on
xlabel('x'), ylabel('sin(2*x)')
Apply this exercise for your exercise.
Sulaymon Eshkabilov
2022 年 10 月 1 日
It is very simple, e.g.:
x = [-3, -2.5 -2 -1 0 1 2 3];
y= sin(2*x);
plot(x, y)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!