solving the Transfer function
    5 views (last 30 days)
  
       Show older comments
    
    Abhinandan Angadi
 on 18 Jun 2021
  
    
    
    
    
    Commented: Abhinandan Angadi
 on 18 Jun 2021
            
how to use tf and zpk commands for the above condition. Can anyone help me?
0 Comments
Accepted Answer
  Chunru
      
      
 on 18 Jun 2021
        % Divide G(s) into two parts (or manually simplify it)
h1 = tf([0.02 1], [0.005 1 0 0 0]);
h2 = tf([0.025 1], [0.001 1]);
g = h1*h2
zpk(g)
doc tf or doc zpk for more details
More Answers (0)
See Also
Categories
				Find more on Dynamic System Models 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!
