derdata - Data Points Mth Derivative Using Specific Methods

This function finds the derivative m of a given data points (x,y) using any method you want at xx point.
38.0 次下载
更新时间 2019/1/1

查看许可证

% derdata
% This function finds the derivative m of a given data points (x,y) using
% any method you want at xx point.
% ----------------------------------------------
% inputs
% x x points
% y f(x)
% method forward, backward, central
% xx the point of interest
% m derivative order
% tv - (optional) true value of the derivative.
%
% x could be evenly spaced or unevenly spaced
% central means hybrid of forward and backward (more accurate)
% it does not mean the point should be in the middle.
% ---------------------------------------------------------------------
% output
% sol.value - the value of the derivative.
% sol.te - the true error (%) if true value is given
% sol.nx - number of points used to calculate the derivative
% ---------------------------------------------------------------------
% example
% x=1:9;
% y=x.^3;
% method='central';
% xx=3;
% m=2;
% sol=derdata( x,y,method,xx,m)
%
% ---------------------------------------------------------------------
% All copyrights goes to Mohammad Al-Fetyani
% University of Jordan

引用格式

Mohammad Al-Fetyani (2024). derdata - Data Points Mth Derivative Using Specific Methods (https://www.mathworks.com/matlabcentral/fileexchange/69861-derdata-data-points-mth-derivative-using-specific-methods), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2018b
兼容任何版本
平台兼容性
Windows macOS Linux
标签 添加标签

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0