if-else if inside the for loop
    3 views (last 30 days)
  
       Show older comments
    
    Turbulence Analysis
 on 18 Feb 2023
  
    
    
    
    
    Commented: Sulaymon Eshkabilov
      
 on 18 Feb 2023
            The numbers 1 to 24 is stored inside the array i
i =[ 1 ..24]
Here, lets say for i = 1,2,4,5,6 and 13,14,16,17,18 I have to define a = 3 and rest of the numbers I have to define a = 4. How to implement this using if else inside the for loop.
for 
    if (i = 1,2,4,5,6,13,14,16,17,18)
        a=3;
    else
        a=4
    end
end
2 Comments
Accepted Answer
  Sulaymon Eshkabilov
      
 on 18 Feb 2023
        Here is how to do it in for .. end loop
N = 1:24;
for ii=1:length(N);
    if ismember(ii, [1,2,4,5,6,13,14,16,17,18])
        a(ii)=3;
    else
        a(ii)=4;
    end
end
a
0 Comments
More Answers (0)
See Also
Categories
				Find more on Loops and Conditional Statements in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
