Error using plot: Value not a numeric scalar
76 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Romio
el 30 de En. de 2020
Comentada: Bahubalendruni Bindu Satya Narayana Sai Varma
el 26 de Mayo de 2021
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 comentarios
Walter Roberson
el 31 de En. de 2020
Yes, it was that line
plot(t,x_smoothed,'linewidth','2')
that we were looking for.
Respuestas (1)
Walter Roberson
el 31 de En. de 2020
plot(t,x_smoothed,'linewidth','2')
Line widths must be numeric.
plot(t,x_smoothed,'linewidth',2)
2 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!