Take 1st and 2nd Derivative of Data Points

165 vues (au cours des 30 derniers jours)
Daniel Koziel
Daniel Koziel le 2 Oct 2019
Modifié(e) : Rohit Garud le 16 Août 2020
I am having issues taking the derivative of experimental data. I have a vector (data_out) that is 2000x1 with experimental data inside. I want to take the 1st and 2nd derivative of this data with respect to a time vector (time) that is 2000x1. I've tried using gradient and diff functions in matlab but I have been unsuccessful.
  4 commentaires
Alex Mcaulley
Alex Mcaulley le 2 Oct 2019
1stD is not a valid name for a variable. From Matlab documentation:
Valid names begin with an alphabetic character, and can contain letters, numbers, or underscores
Nadir Altinbas
Nadir Altinbas le 24 Oct 2019
Data should be in matrix form and then matrix regular operations apply

Connectez-vous pour commenter.

Réponses (1)

Rohit Garud
Rohit Garud le 16 Août 2020
Modifié(e) : Rohit Garud le 16 Août 2020
You can use the gradient() function
data_first_d = gradient(data_out(:)) ./ gradient(t(:))
data_second_d = gradient(data_first_d(:)) ./ gradient(t(:))

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by