lower and upper cusum
이전 댓글 표시
Hello,
I'm trying to use the cusum to evaluate the upper and lower cumulative sums as;
y=random('normal', 7.0,0.1,10,1); [iu il Cp Cm]=cusum(y);
However, the evaluated Cp and Cm do not match the figure when use
cusum(y);
채택된 답변
추가 답변 (1개)
Note that every time, when you run the command it generates a new set of values. Thus, use rng():
rng('default')
y=random('normal', 7.0,0.1,10,1);
[iu il Cp Cm]=cusum(y)
% OR specify the seed value, e.g., 13
rng(13)
y=random('normal', 7.0,0.1,10,1);
[iu il Cp Cm]=cusum(y)
% Test the seed value, e.g., 13
rng(13)
y=random('normal', 7.0,0.1,10,1);
[iu il Cp Cm]=cusum(y)
카테고리
도움말 센터 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
