fillmissing doesn't fill NaN values
조회 수: 12 (최근 30일)
이전 댓글 표시
Senne Van Minnebruggen
2020년 5월 12일
댓글: Senne Van Minnebruggen
2020년 5월 12일
I have a timetable 'Table' which contains some NaN values. I would like to solve these NaN's in the column 'Q' by using a linear interpolation.
Herefore I'm using the function fillmissing but when I run the script it doesn't fill the NaN values.
I'm getting no errors when I run the script but i can't seem to figure out what I'm doing wrong.
fillmissing(Table.Q,'linear')
댓글 수: 0
채택된 답변
Cris LaPierre
2020년 5월 12일
It's working, you just are not capturing the result in a variable. If you have the variable "ans" in your Workspace, open it in the variable editor and see if it has done what you exepcted.
You can update your code to the following
Table.Q=fillmissing(Table.Q,'linear');
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!