How to calculate difference between a vector

I have a housekeeping gene [2 4 6 8 10]
How do i work out the difference between each measurement of the housekeeping gene and the mean of housekeeping gene?

 채택된 답변

Dave B
Dave B 2021년 11월 12일
I think you're asking how to take the values [4 8 6 104 5] and subtract the mean?
a = [4 8 6 104 5];
b = a-mean(a)
b = 1×5
-21.4000 -17.4000 -19.4000 78.6000 -20.4000

추가 답변 (0개)

카테고리

제품

릴리스

R2021b

태그

질문:

2021년 11월 12일

편집:

2021년 11월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by