How to replace some values in a matrix?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    aditya sahu
 il 1 Mag 2017
  
    
    
    
    
    Commentato: Image Analyst
      
      
 il 1 Mag 2017
            I have x=16 * 16 matrix of double values. i need to figure out consecutive values of 'x' which are less than 150 and replace them with the original value plus(+) 8.
0 Commenti
Risposta accettata
  Stephen23
      
      
 il 1 Mag 2017
        
      Modificato: Stephen23
      
      
 il 1 Mag 2017
  
      >> x = randi(200,16,16);
>> idx = x<150;
>> x(idx) = x(idx)+8;
Very basic MATLAB operations, such as logical indices, as introduced in the Getting Started tutorials, which are highly recommended for all beginners:
3 Commenti
  Image Analyst
      
      
 il 1 Mag 2017
				How are you defining consecutive? MATLAB goes row by row (down rows), then over to the next column and down its rows. Is that your definition? If so, then is the last element in column 2 consecutive with the first element in column 3?
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Image Processing Toolbox 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!


