How to add some fluctuation in the flat line?

5 ビュー (過去 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 Center および File Exchange2-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