How to calculate difference between a vector

1 次查看(过去 30 天)
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

Community Treasure Hunt

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

Start Hunting!

Translated by