Problem with the interp function
4 次查看(过去 30 天)
显示 更早的评论
"Error using interp (line 68)
Length of data sequence must be at least 9.
You either need more data or a shorter filter (L)."
How might I be able to fix this?
1 个评论
Walter Roberson
2019-11-15
Is it the case that for any input vector [a b c] with factor 3, that the output would be [a, 2/3*a+1/3*b, 1/3*a+2/3*b, b, 2/3*b+1/3*c, 1/3*b+2/3*c, c]
采纳的回答
Walter Roberson
2019-11-15
编辑:Walter Roberson
2019-11-15
out_vector = [reshape((reshape(diff(time_vector), [], 1) * (0:factor-1)/factor + reshape(time_vector(1:end-1),[],1)).',1,[]), time_vector(end)];
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!