What is this error means? on mac r2012b: "Undefined function 'impulse' for input arguments of type 'double'."
Mostra commenti meno recenti
for Example i write just:
impulse([1],[1 2 9])
Undefined function 'impulse' for input arguments of type 'double'.
gives this error or:
tf(1,[1 2 9]);
Undefined function 'tf' for input arguments of type 'double'.
every function like this *I Use matlab 2012b on Mac *
Risposte (2)
It probably means you not have the Control System Toolbox. Use the ver command to see if you havethe toolbox
ver
or see the output of the following
which impulse
which tf
6 Commenti
Javid azimi
il 21 Nov 2012
Modificato: Javid azimi
il 21 Nov 2012
Javid azimi
il 21 Nov 2012
Javid azimi
il 21 Nov 2012
IF the license the University license includes the Controls Toolbox and your University email id is authorized to be added to the license. I manage a license for a University and we have to add users email ids to be associated with the accounts or get product key to associate licenses to accounts. If we need extra toolboxes we pay for them to be added to our license.
It seems that your function is not defined.
e.g. try something like this to define a function
impuls= @(x,y) x+y
1 Commento
Javid azimi
il 21 Nov 2012
Categorie
Scopri di più su Manage Products in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!