step response of a signal
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Eliraz Nahum
 il 8 Dic 2018
  
    
    
    
    
    Risposto: Star Strider
      
      
 il 8 Dic 2018
            hey,
how can I insert a step signal type which isn't equal to one, but of a type const*1(t).
the command step(sys) gives the response for const=1.
0 Commenti
Risposta accettata
  Star Strider
      
      
 il 8 Dic 2018
        Your ‘const*t’ signal is a ramp function.  Probably the easiest way to do what you want is to use the lsim function: 
s = tf('s');
H = s/(s^2 + 1);                        % Arbitrary System
t = linspace(0,100);                    % Time Vector
Const = 4.2;
u = Const * t;                          % Ramp Function
figure
lsim(H, u, t);                          % System Response To Ramp
Make necessary changes to the ‘t’ vector and ‘Const’ to work with your code.  
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Digital Filter Analysis in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

