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 Downloads
Updated 1 Jan 2019

View License

% 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

Cite As

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. Retrieved .

MATLAB Release Compatibility
Created with R2018b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0