数値の予測方法
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
qrqr
el 12 de Feb. de 2019
Comentada: madhan ravi
el 12 de Feb. de 2019
以下の数値があります。
x = [1,2,3,4,5,y]
ここでyにあてはまる値を数値の傾向などで予測することはできますか?
この場合、誰もがy=6だと思うはずですが
x = [12,31,455,673,812,12,y]
この様に数値がまばらな状況もあります。
わかりずらい質問かもしれませんが、宜しくお願いします。
0 comentarios
Respuesta aceptada
madhan ravi
el 12 de Feb. de 2019
x=[1:5 NaN];
fillmissing(x,'linear')
% likewise try it for your second example
3 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!