can anyone help me to run this code , thank you
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    mina massoud
 il 9 Apr 2019
  
    
    
    
    
    Risposto: Walter Roberson
      
      
 il 10 Apr 2019
            for i=1:300
    for j=1:100
        A{i,j}=10*randn(2,8);
        B{i,j}=10*randn(2,8);
        MA{i,j}=mean(A{i,j},1);
        MB{i,j}=mean(B{i,j},1);
        [E{i,j}, idx{i,j}] = min([MA{i,j};MB{i,j}]); 
        AB{i,j} = nan(2, length(E{i,j})); 
        AB{i,j}(:,idx==1) = A{i,j}(:,idx==1); 
        AB{i,j}(:,idx==2) = B{i,j}(:,idx==2);
    end
end
1 Commento
  Rik
      
      
 il 9 Apr 2019
				Have a read here (or here for more general advice). It will greatly improve your chances of getting an answer.
Risposta accettata
  Walter Roberson
      
      
 il 10 Apr 2019
        for i=1:300
    for j=1:100
        A{i,j}=10*randn(2,8);
        B{i,j}=10*randn(2,8);
        MA{i,j}=mean(A{i,j},1);
        MB{i,j}=mean(B{i,j},1);
        [E{i,j}, idx{i,j}] = min([MA{i,j};MB{i,j}]); 
        AB{i,j} = nan(2, length(E{i,j})); 
        AB{i,j}(:,idx{i,j}==1) = A{i,j}(:,idx{i,j}==1); 
        AB{i,j}(:,idx{i,j}==2) = B{i,j}(:,idx{i,j}==2);
    end
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!