How to select certain columns of a matrix only when the values in certain rows showing the the double of the value in a particular row of a column?

2 ビュー (過去 30 日間)
Hi everybody!
I have a Matrix with 5 rows and 2300 columns M(5,2300).
0.2 0.3 0.4 2 ...
3 0.5 1.9 2.5 ...
2 0.7 0.2 3 ...
1 1 1 1 ...
0.5 0.1 1.5 3.1 ...
looks like above. The numbers you see are ratios because all the values of a particular column were divided by the value in the 4th row (which is now 1). I intend to just keep the columns for future analysis when at least one value of the other rows in a column (row1:3 and row5 values) are >=2, meaning that they should be at least the double of the value in the 4th row. As an output from the columns above it should give me an index like [1,0,0,1].
Could you probably suggest a nice solution? I'm thankful for every help.

採用された回答

KSSV
KSSV 2020 年 8 月 14 日
Let A be your 5*n matrix.
% GEt ratio
R = A(1:3,:)./A(5,:) ;
idx = R>=2 ; % get indices where ratio is >= 2
  3 件のコメント
KSSV
KSSV 2020 年 8 月 14 日
編集済み: KSSV 2020 年 8 月 14 日
So you have a matrix of 0 and 1. How about using?
val = sum(idx) ;
id = find(val) ;
Kim Arnold
Kim Arnold 2020 年 8 月 14 日
yes, this works. thanks. probably it is better to do it in 2 steps.
Thanks!

サインインしてコメントする。

その他の回答 (2 件)

Bruno Luong
Bruno Luong 2020 年 8 月 14 日
編集済み: Bruno Luong 2020 年 8 月 14 日
Mkeep = M(:,any(M>=2,1))
  4 件のコメント
Kim Arnold
Kim Arnold 2020 年 8 月 14 日
Dear Bruno, yes the site was not loading anymore.
Yeah with your code i get the columns with their values but I just wanted to have it with idx 1,0 ...
anyways thanks as well for your help!
Bruno Luong
Bruno Luong 2020 年 8 月 14 日
shouldn't call |1 0 0 1] an indexes, they form a logical array.
any(M>=2,1)
give you that.

サインインしてコメントする。


Shae Morgan
Shae Morgan 2020 年 8 月 14 日
編集済み: Shae Morgan 2020 年 8 月 14 日
do this in two steps: 1) find the indices where the values > 2 and then 2) sum the columns - if all rows 1-3 and 5 are less than 2, then this sum will be 0. If one of them has a value >=2, then the sum will be >0.
idx= M>=2;
out= sum(idx)>0
out will give you an index of 0's and 1's for each column. if 1, then it's something you should analyze later (i.e., has a value 2x row 4)
  2 件のコメント
Kim Arnold
Kim Arnold 2020 年 8 月 14 日
Dear Shae,
thanks, is what KSSV also recommended to do. Just was looking for like one line of code :).
Thanks as well for your input.
Shae Morgan
Shae Morgan 2020 年 8 月 14 日
編集済み: Shae Morgan 2020 年 8 月 14 日
single line answer by combining the variables :) Thanks for the consideration! Should work for KSSV's answer too:
out= sum(M>=2)>0 %my implementation, single line
id = find(sum(M>=2)) ; %KSSV's solution, single line

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by