数値の予測方法
1 view (last 30 days)
Show older comments
以下の数値があります。
x = [1,2,3,4,5,y]
ここでyにあてはまる値を数値の傾向などで予測することはできますか?
この場合、誰もがy=6だと思うはずですが
x = [12,31,455,673,812,12,y]
この様に数値がまばらな状況もあります。
わかりずらい質問かもしれませんが、宜しくお願いします。
0 Comments
Accepted Answer
madhan ravi
on 12 Feb 2019
x=[1:5 NaN];
fillmissing(x,'linear')
% likewise try it for your second example
3 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!