필터 지우기
필터 지우기

average and standard deviation of one column of a matrix

조회 수: 1 (최근 30일)
altaf ahmed
altaf ahmed 2019년 5월 5일
댓글: per isakson 2019년 5월 7일
I want to calcualte the average and standard deviation for one column of a 1000x10 matrix.
Is there a quicker/efficient way or should I use existing code :
theSum = 0;
for k = 1 : length(x)
theSum = theSum + x(k);
end
theMean = theSum / length(x);

채택된 답변

per isakson
per isakson 2019년 5월 5일
편집: per isakson 2019년 5월 5일
  댓글 수: 2
altaf ahmed
altaf ahmed 2019년 5월 5일
Few more question as it was not clear to me hence asking - My data in the matrix is delay values, so can these std and mean commands be operated on an entire matrix of 1000x10 i.e. result is obtained based on all columns rather than just one?
2- Also is there a way to build up histogram data based on this matrix, e.g. below:
2a- number of occurences for minimum value, maximum value and average value
2b- how to obtain 90 percentile from this data (i.e., the delay that is surpassed by at most 10% of the occurences)
per isakson
per isakson 2019년 5월 7일
"result is obtained based on all columns rather than just one? " Yes
X = rand(5);
mean(X(:)), std(X(:))
"2a- number of occurences for ..." The values of the "matrix of 1000x10" are they whole numbers?
"2b- how to obtain 90 percentile" see prctile Percentiles of a data set

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by