Using Diff() with NaN values
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Antworten (1)
Sulaymon Eshkabilov
am 2 Apr. 2021
You can substitute all 'nan' values with 0's by locating them via isnan() and then substituting.
Siehe auch
Kategorien
Mehr zu Price and Analyze Financial Instruments finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!