My fillmissing function doesnt do moving methods
显示 更早的评论
Hi, so I got
A = [1 2 5;4 5 7;NaN -1 8;7 6 0]
and i wanted to make
A = fillmissing(A,'movmean',2)
but I got an error
Error using fillmissing/parseInputs (line 318)
Fill method must be 'constant', 'previous', 'next', 'nearest', 'linear', 'spline', or 'pchip'
And I got R2016b, and it works with previous, nearest, linear, etc
采纳的回答
更多回答(1 个)
Go to your MATLAB root folder and search for fillmissing.m file. Then open it, go to line 350 and see if the cell array at that line contains movmean.
4 个评论
Guillaume
2018-3-23
No! Don't do that. You should never modify any of the files in matlab root folder and its subfolders. This is likely to result in a corrupt installation of matlab.
Birdman
2018-3-23
I did not say modifying. I just wanted him to take a look whether that option is included or not in the m file. I did not say anything about changing the file.
Steven Lord
2018-3-23
Even if you don't intend to modify the file, it's easy to accidentally modify the file when it's open in the Editor.
If you want to display a subset of the lines in a file, you could use dbtype to do so. The formatting isn't as nice in the Command Window output of dbtype as the formatting of the file in the Editor is, but the dbtype output is read-only.
Birdman
2018-3-23
Hmm, I get it. I did not mean to modify it of course, but when this kind of problem occurs, I find it useful to go and look at the m file to see whether the necessary line is included or not. Thanks for the suggestion.
类别
在 帮助中心 和 File Exchange 中查找有关 Files and Folders 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!