Error using plot: Value not a numeric scalar
이전 댓글 표시
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
David Hill
2020년 1월 31일
Please provide example inputs (x,w) to your function. There is no y that is returned.
Walter Roberson
2020년 1월 31일
편집: Walter Roberson
2020년 1월 31일
we need to see the plot call
Romio
2020년 1월 31일
Walter Roberson
2020년 1월 31일
It appears that w would be expected to be a positive integer. But we still need to see the call to plot()
Romio
2020년 1월 31일
Romio
2020년 1월 31일
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)
카테고리
도움말 센터 및 File Exchange에서 Electrical Block Libraries에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
