Class inheritance from fi objects
Afficher commentaires plus anciens
Hi,
I'm trying to create a sub-class for the fixed-point toolbox object 'fi'. This is in order to create additional methods for displaying values of fi data.
Tried several ways (listed below) - all of them return with the same error:
The specified super-class 'fi' contains a parse error or cannot be found on MATLAB's search path, possibly shadowed by another file with the same name
(No error# number is given)
This is even though I've got fixed point toolbox installed and working properly, with no problems.
I've tried the following:
1.
classdef fp < fi
end
2.
classdef fp < fi
methods
function out = fp(fi_args)
out = out@fi(fi_args)
end
end
end
Any help will be appreciated.
Using Matlab 2011b
Thanks, Noam
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Performance and Memory dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!