Using Diff() with NaN values

25 vues (au cours des 30 derniers jours)
david crowley
david crowley le 2 Avr 2021
I am trying to find the difference between rows using the diff() function. However, because the rows contain NaN values I am getting the following error.
'Check for missing argument or incorrect arugument data type in call to function diff'
The data is a timetable with weekly closing stock prices and I just need to calculate the difference in price between weeks.
  1 commentaire
david crowley
david crowley le 3 Avr 2021
Modifié(e) : david crowley le 3 Avr 2021
I've tried to use the following to replace the NaN values, which worked - but trying to use the diff() function in a timetable does not.
fillmissing(C,"constant",0);

Connectez-vous pour commenter.

Réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 2 Avr 2021
You can substitute all 'nan' values with 0's by locating them via isnan() and then substituting.
  1 commentaire
david crowley
david crowley le 3 Avr 2021
This doesn't work with timeseries though?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Financial Toolbox 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