필터 지우기
필터 지우기

How I sum to matrix wich one is the mean of the value and the other the standard deviation?

조회 수: 1 (최근 30일)
you certainly know that a value in order to be defined correctly it must be defined by its mean plus or minus its standard deviation:
VALUE= MEAN ± STANDARD DEVIATION
Now, I have a matrix for the mean (meanbasket) and a matrix for the standard deviation (devstdbasket).
How can I obtain the matrix of the value?

채택된 답변

Matt J
Matt J 2021년 9월 30일
I this what you mean?
[m,n]=size(meanbasket);
value=meanbasket+randn([m,n]).*devstdbasket;
  댓글 수: 2
HelpAStudent
HelpAStudent 2021년 9월 30일
No, it's not. Because I have the value of both the matrix (I don't want random values): the matrix who's the value are from the standard deviation have also the problem to change size on every loop. So I also should have them preallocating for speed.
Matt J
Matt J 2021년 9월 30일
It's not at all clear what you're trying to calculate. If you're just trying to compute the upper and lower bounds mentioned in your original post, then you obviously know already what operations are required because you yourself posted equations for them.
upperBound=meanbasket+devstdbasket;
lowerBound=meanbasket-devstdbasket;

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by