Class inheritance from fi objects

1 view (last 30 days)
Noam
Noam on 28 May 2013
Commented: Timothy Koehler on 8 Oct 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

Accepted Answer

Daniel Shub
Daniel Shub on 28 May 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 Comments
Noam
Noam on 28 May 2013
Thanks! Will try...
Timothy Koehler
Timothy Koehler on 8 Oct 2014
Was this effort ever successful?

Sign in to comment.

More Answers (0)

Categories

Find more on Construct and Work with Object Arrays 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!