How to add some fluctuation in the flat line?

조회 수: 6 (최근 30일)
Nisar Ahmed
Nisar Ahmed 2021년 11월 4일
댓글: Jon 2021년 11월 8일
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.

채택된 답변

Jon
Jon 2021년 11월 4일
편집: Jon 2021년 11월 4일
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
Nisar Ahmed
Nisar Ahmed 2021년 11월 8일
Thank you @Jon, it is working
Jon
Jon 2021년 11월 8일
Glad to hear. Good luck with your project

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by