central_diff2(y,del​tat,d,a)

Finite difference approximation of any order derivative, any accuracy

이 제출물을 팔로우합니다

central_diff2(y,deltat,d,a) returns the dth numeric derivative of y to specified accuracy order deltat^a for evenly sampled data (deltat is constant).
Example:
The third derivative of a time series f sampled at 0.01 second increments to accuracy order deltat^4:
third_derivative_of_f=central_diff2(f,0.01,3,4);
Interior points are calculated using the central difference method. First and last points are calculated using forward and backward difference methods. Intermediate point coefficients are calculated using a Vandermode system. The specified accuracy is maintained for all points.

Source for intermediate point algorithm: http://www.siam.org/books/ot98/sample/OT98Chapter1.pdf

인용 양식

Benjamin Strom (2026). central_diff2(y,deltat,d,a) (https://kr.mathworks.com/matlabcentral/fileexchange/48520-central_diff2-y-deltat-d-a), MATLAB Central File Exchange. 검색 날짜: .

도움

도움 받은 파일: central_diff.m, N-Point Central Differencing

카테고리

Help CenterMATLAB Answers에서 Interpolation에 대해 자세히 알아보기

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
1.1.0.0

description edits

1.0.0.0