From: Manuel Metzmann on
Hi,

I'm having trouble compiling my matlab program called
Filter.m. It's about designing Filters in Matlab and uses
functions like fir1, cheby, etc.. When I run it in Matlab it
all works fine but now i want to compile it so that i can
use it on other computers.

I tried to compile it with "mcc -m Filters.m" but i get
following error message:

>> mcc -m Filter.m
Warning: an error occurred while parsing class
FilterDesignDialog.AbstractEditor:
Undefined function or variable 'DAStudio.Object'.

> In
C:\MATLAB\R2007a\toolbox\shared\filterdesignlib\@FilterDesignDialog\@CoeffEditor\schema.p>schema
at 9
Warning: an error occurred while parsing class
FilterDesignDialog.CoeffEditor:
Invalid superclass handle.

Warning: an error occurred while parsing class
quantum.abstractfixedfilterq:
Can't load 'C:\MATLAB\R2007a\bin\win32\fitools.dll':

> In
C:\MATLAB\R2007a\toolbox\filterdesign\quantization\@quantum\@fixeddf1filterq\schema.p>schema
at 12
In
C:\MATLAB\R2007a\toolbox\filterdesign\quantization\@quantum\@fixeddf2tfilterq\schema.p>schema
at 9
Warning: an error occurred while parsing class
quantum.fixeddf1filterq:
Invalid superclass handle.

> In
C:\MATLAB\R2007a\toolbox\filterdesign\quantization\@quantum\@fixeddf2tfilterq\schema.p>schema
at 9
Warning: an error occurred while parsing class
quantum.fixeddf2tfilterq:
Invalid superclass handle.

??? Can't load 'C:\MATLAB\R2007a\bin\win32\fitools.dll':

Depfun error: 'Can't load
'C:\MATLAB\R2007a\bin\win32\fitools.dll': '
??? Error executing mcc, return status = 1.



Why can't it load the fitools.dll? What does that mean? The
file is there...

The Compiler is set up properly. I tried to compile a test
program (only a window with a pushbutton) with the same
command and it worked. So I guess that the error has
something to do with the Filter related functions. How can I
fix this? Any Ideas?

My Matlab Version is 7.4.0 R2007a running on Vista.

Thank You!