Undefined function 'tf' for input arguments of type 'double'.
Mostra commenti meno recenti
I am plotting a pretty simple transfer function to make bode plots magnitude and phase.
code looks something like this
>> num = [1000 10000];
>> den = [1 1100 100000];
>> G = tf(num, den)
>>bode(G), grid
Now, this works and I get the right graphs when I use the online version.
HOWEVER
When I use my PC version I get "Undefined function 'tf' for input arguments of type 'double'."
I'm not sure how to fix this.
Risposte (1)
Mark Sherstan
il 16 Nov 2018
1 voto
Categorie
Scopri di più su Frequency-Domain Analysis in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!