Sum specific colums based on a criteria

Dear all, I have a column matrix A and an nxn matrix B. I have been able to estimate the correlation coefficient (R) between the constant column matrix A and each column vector in matrix B using corr(A,B). However, I am finding difficulties in summing only columns with their R=>0.2, while ignoring columns with R<0.2. I will be very grateful for the assistance.

 Accepted Answer

madhan ravi
madhan ravi on 18 May 2019
Edited: madhan ravi on 18 May 2019
sum(R(:,any(R>=.2)))

3 Comments

Thanks for your quick response, this code sums the correlation coefficients instead of the nxn matrix B.
sum(B(:,any(R>=.2))) % syms B according to R satisfying the condition
It's working just as expected, thank you very much. You are a live saver.

Sign in to comment.

More Answers (0)

Categories

Find more on Random Number Generation in Help Center and File Exchange

Products

Release

R2018a

Community Treasure Hunt

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

Start Hunting!