Error using plot: Value not a numeric scalar
73 ビュー (過去 30 日間)
古いコメントを表示
I am using this running average function to smooth out dome noisey data.
function y = RunningAvg(x,w)
wts = ones(1, w) / w
new = conv(x, wts, 'same');
end
However, when I plot the filtered signal, I get this error massage
Error using plot
Value not a numeric scalar
7 件のコメント
Walter Roberson
2020 年 1 月 31 日
Yes, it was that line
plot(t,x_smoothed,'linewidth','2')
that we were looking for.
回答 (1 件)
Walter Roberson
2020 年 1 月 31 日
plot(t,x_smoothed,'linewidth','2')
Line widths must be numeric.
plot(t,x_smoothed,'linewidth',2)
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!