필터 지우기
필터 지우기

How to calculate difference between a vector

조회 수: 1 (최근 30일)
scientist121
scientist121 2021년 11월 12일
편집: scientist121 2021년 11월 12일
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개)

카테고리

Help CenterFile Exchange에서 Feature Detection and Extraction에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by