Defining upper and lower control limits for a graph

18 ビュー (過去 30 日間)
neofytos avgousti
neofytos avgousti 2022 年 5 月 23 日
回答済み: the cyclist 2022 年 5 月 23 日
Trying to get thge example below like the one above with set limits for ucl and lcl where ucl = 1.5*mean

回答 (1 件)

the cyclist
the cyclist 2022 年 5 月 23 日
Here is a simple example of setting plot limits based on the data. (The last line of code is where I set the limits.)
x = 1:50;
y = rand(size(x));
mean_y = mean(y);
ucl = 1.5*mean_y;
lcl = -1.5*mean_y;
figure
plot(x,y)
set(gca,"YLim",[lcl ucl])

カテゴリ

Help Center および File ExchangeAutomated Driving Toolbox についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by