Changing Default Function Matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to run the following code:
clear tf; a = tf([5],[0.8 1])
which gives "Undefined function 'tf' for input arguments of type 'double'."
I checked for license and got the following reply
license('test', 'control_toolbox')
ans =
1
I tried which tf -all
which gave me the following response C:\Program Files\MATLAB\R2012b\toolbox\ident\ident\@idParametric\tf.m % idParametric method C:\Program Files\MATLAB\R2012b\toolbox\shared\controllib\engine\@StaticModel\tf.m % StaticModel method C:\Program Files\MATLAB\R2012b\toolbox\signal\signal\@dfilt\tf.m % dfilt method
so is the error due to the fact that the default tf function is not the desired one. and if so then how to solve the problem???
0 comentarios
Respuestas (1)
Luuk van Oosten
el 25 de Nov. de 2014
Dear Tanmay,
Looks like your input arguments for the function 'tf' must be of the type 'single'.
Example: if 'B' is of the type double, you can make it a single by:
A = single(B)
0 comentarios
Ver también
Categorías
Más información sobre Control System Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!