How to calculate the derivative and deviation of a series of data

1 view (last 30 days)
I have a series of data which is varying by one day or 24 hrs so how can i find its derivative and deviation

Answers (1)

KSSV
KSSV on 2 Jul 2020
Edited: KSSV on 2 Jul 2020
To find deviation i.e standard deviation use std.
To find derivative ..if you have time step use...
d = diff(data)/dt ;
Alos have a look on gradient.

Categories

Find more on Time Series in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!