Effacer les filtres
Effacer les filtres

Is there any way to increase the density of curve samples?

10 vues (au cours des 30 derniers jours)
Abdulaziz Abutunis
Abdulaziz Abutunis le 3 Juin 2017
Commenté : Vandana Rajan le 15 Juin 2017
Dear fellows,
I have a plot of multiple curves and I want, if possible, to increase the density of these curves (increase the data). It looks like be some thing that uses fitting tool or interpolation tool but I was not able to find any. I appreciate your help.
Thanks in advance Aziz

Réponse acceptée

Vandana Rajan
Vandana Rajan le 13 Juin 2017
Hi,
Why don't you use the 'interp' function to interpolate the data and then plot it? Below is an example code snippet from the documentation.
t = 0:0.001:.029; % Time vector
x = sin(2*pi*30*t) + sin(2*pi*60*t); % Original Signal
y = interp(x,4); % Interpolated Signal
subplot(211);
stem(x);
title('Original Signal');
subplot(212);
stem(y);
title('Interpolated Signal');
  2 commentaires
Abdulaziz Abutunis
Abdulaziz Abutunis le 13 Juin 2017
Thank you Vandana, Actually I tried this method but the thing I wanted was to have a regular "plot" because I had many curves on the plot.
Thanks Aziz
Vandana Rajan
Vandana Rajan le 15 Juin 2017
Hi,
In the same code snippet, if you change 'stem' to 'plot', you can see the effect of interpolation. The sharp edges on the curve (due to lack of data in between 2 points) becomes smooth as interpolation increases data samples in between them.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Linear and Nonlinear Regression 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