How to find minimum value from loop using if function iteration?
    6 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Anom Sulardi
 am 29 Jun. 2020
  
    
    
    
    
    Kommentiert: Stephen23
      
      
 am 1 Jul. 2020
            I have a=6.5, I would like to define "if function" inside the "for loop", for i=1:10, it will do the loop imin < a < imax, and if the "if function" is correct, I would like to use the b= imin (in which the a function is correct). 
My expectation toward the code is b=6. Since the 6.5 is in between number for loop 6 and 7. And I want to use 6 (imin where the a is in correct statemen for if function)
How do I code that in matlab?
a=6.5;
for i=1:10
    imin=i;
    imax=imin+1
    if imin<a<imax
        b=imin;
    end
    if imax==10;
    end
end
2 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
  bharath pro
      
 am 29 Jun. 2020
        
      Bearbeitet: bharath pro
      
 am 29 Jun. 2020
  
      Instead of using imin<a<imax, try using an intersection of two commands for checking less than and greater than seperatly.
a=6.5;
for i=1:10
    imin=i;
    imax=imin+1
    if (imin<a)&&(a<imax)
        b=imin;
    end
    if imax==10;
    end
end
This will give the output as 6
Siehe auch
Kategorien
				Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


