I have a question regarding time dependent loop, as I want to have a variable changing with time in the loop from 0 to 30
    4 views (last 30 days)
  
       Show older comments
    
gamma(t) =4-(6/90*t); 
0 Comments
Accepted Answer
  Ameer Hamza
      
      
 on 9 Apr 2020
        
      Edited: Ameer Hamza
      
      
 on 10 Apr 2020
  
      Without loop:
t = linspace(0,30,100); % create 100 points between 0 and 30
gamma = 4-(6/90*t); 
Using for loop: 
t = linspace(0,30,100);
gamma = zeros(size(t));
for i=1:numel(t)
    gamma(i) = 4-(6/90*t(i));
end
10 Comments
More Answers (0)
See Also
Categories
				Find more on Gamma Functions 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!
