Class inheritance from fi objects
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Noam
am 28 Mai 2013
Kommentiert: Timothy Koehler
am 8 Okt. 2014
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
0 Kommentare
Akzeptierte Antwort
Daniel Shub
am 28 Mai 2013
I am not sure you can. It looks like the fi object is setup with the old style OO framework. The fi function calls embedded.fi which is really the fi class which is defined as a method of the embedded class. I am pretty sure you cannot mix the styles. I don't know the old style OO framework well enough to tell you if it is possible to subclass them. I would suggest browsing the source structure to see if you can get any insight.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Construct and Work with Object Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!