condition on random generated data
    6 ビュー (過去 30 日間)
  
       古いコメントを表示
    
abc_data = rand((randi(20)),2)
on the above random data,  I want to put a condition that if row value  1 > 0.5 and column value  1> 0.6 than print true else false 
0 件のコメント
採用された回答
  Adam Danz
    
      
 2021 年 6 月 13 日
        
      編集済み: Adam Danz
    
      
 2021 年 6 月 14 日
  
      > if row value  1 > 0.5 and column value  1> 0.6 than print true else false 
It sounds like you are only interested in assessing row 1 and column 1 which are vectors of two different lengths.  If you want to do something different, please explain more clearly the goal. 
abc_data = rand((randi(20)),2)
% For row 1
abc_data(1,:) > 0.5
% For col 1
abc_data(:,1) > 0.6
% For all rows (if any values are > 0.5)
any(abc_data > .5, 2)
% For all columns (if any values are greater > 0.6)
any(abc_data > .6, 1)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

