Changing values in vector
    5 views (last 30 days)
  
       Show older comments
    
    Mr.Chandler
 on 16 Nov 2020
  
    
    
    
    
    Commented: Mr.Chandler
 on 16 Nov 2020
            Hello I have 1000 datas created by "randn" (A=randn(1,1000)). I want to change every value(n) which is not suitable for 1 < abs(A(n)) < 10. Also, new values should have been created by randn again. And it should provides the 1 < abs(A(n)) < 10 condition. So, I think have to create for loop for changing values until they provide the condition. How can I do that?
0 Comments
Accepted Answer
  Setsuna Yuuki.
      
 on 16 Nov 2020
        
      Edited: Setsuna Yuuki.
      
 on 16 Nov 2020
  
      You can try this code
a = abs(randn(1,1000))
cont = 1;
while cont < length(a)+1
    if(a(cont) < 1 || a(cont) > 10)
        a(cont) = randn(1);
        cont = 0;
    end
    cont = cont+1;   
end
3 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!
