Effacer les filtres
Effacer les filtres

Plot smoothing line without points

11 vues (au cours des 30 derniers jours)
Max1234
Max1234 le 2 Jan 2023
Commenté : Star Strider le 3 Jan 2023
Hey,
can i just plot the smoothing line without the scatter points? And is it possible to get just the Data of the smoothing line to plot more than one line in one figure?
Thank you!
  1 commentaire
Cameron
Cameron le 2 Jan 2023
What do you mean by smoothing line? You can take the information from polyfit and use that if it's some polynomial fit, but I'm not sure what your model looks like. I'm also not sure what the second question means.

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 2 Jan 2023
I am not certain what you wnat to do.
Taking a guess —
N = 20;
x = sort(randn(1,N));
y = randn(1,N);
xs = linspace(min(x), max(x), 10*N);
ys = interp1(x, y, xs, 'spline'); % Interpolate Using 'spline'
figure
subplot(2,1,1)
plot(x, y, '.')
hold on
plot(xs, ys)
hold off
grid
axis('padded')
title('With Points')
subplot(2,1,2)
plot(xs, ys)
grid
axis('padded')
title('Without Points')
To plot more than one line in one axes, use the hold function. To plot more than one axes in one figure, use subplot, tiledlayout, or stackedplot, depending on what you want to do. (I have illustrated a version all those here.)
.
  5 commentaires
Max1234
Max1234 le 3 Jan 2023
Thank you very much! You helped me a lot!
Star Strider
Star Strider le 3 Jan 2023
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by