How to add some fluctuation in the flat line?

4 vues (au cours des 30 derniers jours)
Nisar Ahmed
Nisar Ahmed le 4 Nov 2021
Commenté : Jon le 8 Nov 2021
Hi,
In the upper part of attached/copied figure, the encircled area, the graph has values equal to one (straight/flate line). Suppose I want add some fluctuation in the flat line such that numerical values remain in between 0.96 -0.99.
Is there any way I can do in Matlab? Please guide me in this regard.

Réponse acceptée

Jon
Jon le 4 Nov 2021
Modifié(e) : Jon le 4 Nov 2021
I think you can adapt the approach that I illustrate here:
% generate original function with flat zone
t = linspace(1970,1880);
x = zeros(size(t));
% use logical indexing to work on specific portions of curve
x(t<1918) = 1;
x(t>1918) = 0.5+0.1*randn(size(x(t>1918)));
% plot original curve
figure,plot(x,t)
% make the early years noisy too
sigma = 0.015;
xbar = (0.96+0.99)/2;
x(t<1918) = xbar + sigma*randn(size(x(t<1918)));
figure,plot(x,t)
My y axis (years?) is increasing rather than decreasing like yours. This is the normal way to make an x-y plot. I'm not sure if this is important to you. I mostly just wanted to illustrate how you add the noise to a selected portion of your graph.
  3 commentaires
Nisar Ahmed
Nisar Ahmed le 8 Nov 2021
Thank you @Jon, it is working
Jon
Jon le 8 Nov 2021
Glad to hear. Good luck with your project

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D 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