Changing Default Function Matlab?
5 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Luuk van Oosten
on 25 Nov 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 Comments
See Also
Categories
Find more on Stability Analysis 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!