Error using plot: Value not a numeric scalar

77 vues (au cours des 30 derniers jours)
Romio
Romio le 30 Jan 2020
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 commentaires
Romio
Romio le 31 Jan 2020
and it is true that there are some noninterger data in the x_smooth. Is there anyway to override that?
Walter Roberson
Walter Roberson le 31 Jan 2020
Yes, it was that line
plot(t,x_smoothed,'linewidth','2')
that we were looking for.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 31 Jan 2020
plot(t,x_smoothed,'linewidth','2')
Line widths must be numeric.
plot(t,x_smoothed,'linewidth',2)
  2 commentaires
Romio
Romio le 31 Jan 2020
I am such an idiot! Thank you!!!!!
Bahubalendruni Bindu Satya Narayana Sai Varma
Thank you

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by