how to calculate a difference of function with any parameter
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
Torsten
2022 年 1 月 8 日
編集済み: Torsten
2022 年 1 月 8 日
function main
h = 1e-6;
xleft = -pi;
xright = pi;
n = 200;
dx = (xright-xleft)/n;
x = xleft:dx:xright;
change_in_y_by_change_in_x = (f(x+h)-f(x))/h;
plot(x,change_in_y_by_change_in_x)
hold on
plot(x,cos(x)) % for comparison, plot (sin(x))' = cos(x)
end
function y = f(x)
y = sin(x)
end
7 件のコメント
Torsten
2022 年 1 月 8 日
Please include the function f in which you calculate "N" dependent on "da" callable as
N = f(da)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!