Matrix B from column of matrix A with condition

1 回表示 (過去 30 日間)
Uros Markovic
Uros Markovic 2021 年 6 月 13 日
コメント済み: RITURAJ 2023 年 8 月 27 日
Hello,
I have to create matix B that contains columns of matrix A which product of elements are greater than 20. How can i code this? Thanks.

採用された回答

Mouhamed Niasse
Mouhamed Niasse 2021 年 6 月 13 日
編集済み: Mouhamed Niasse 2021 年 6 月 13 日
Hello,
Here is what i achieved. Hope you can easily understand it.
A=randi(5,5) % Just for an example, A is a 5x5 array of random integers
B=A(:,prod(A)>20) % This is the only line you'll need for any given matrix A.
  1 件のコメント
RITURAJ
RITURAJ 2023 年 8 月 27 日
I think it is "Rand" and not "Randi"

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

その他の回答 (0 件)

カテゴリ

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