why i get error during deployment process?

18 views (last 30 days)
I am trying to deploy a very simple m.file
first i select compiler by command mbuild -setup
then command deploytool .
matlab start processing untill using mbuild fuction
it get error:
Executing command: mbuild -O -v -output "u1" "u1_main.c" "u1_delay_load.c" "u1_mcc_component_data.c" -link exe -env MCR_DELAYLOAD=/delayload:mclmcrrt710.dll -env MCR_DELAYLIB=delayimp.lib
Error: An error occurred while shelling out to mbuild (error code = -1).
Unable to build executable.
??? Error using ==> mcc
Error executing mcc, return status = 1 (0x1).
note:
i am using matlab 7.8.0 R2009a _windows XP 32bit
i have no spaces in path dirctoris
  4 Comments
Hany
Hany on 16 Jan 2013
Edited: Jan on 16 Jan 2013
the full result of deploymeny
Build output( 2013-01-16 13:41:57).
mcc -F 'e:\Mat2009\work\ntst\U.prj'
MATLAB:I18n:InconsistentLocale - The system locale setting, English (United States)_United States.1252, is different from the user locale setting, Arabic (Egypt)_Egypt.1256.
Warning: Duplicate directory name: E:\Mat2009\work\ntst.
Warning: Duplicate directory name: e:\Mat2009\work\ntst.
mcc -o 'U' -W 'WinMain:U' -d 'e:\Mat2009\work\ntst\U\src' -T 'link:exe' -v 'e:\Mat2009\work\ntst\u1.m'
Compiler version: 4.10 (R2009a)
Processing e:\Mat2009\work\ntst\u1.fig
Processing E:\Mat2009\toolbox\matlab\guide\guideopts.fig
Processing E:\Mat2009\toolbox\matlab\winfun\actxcontrolselect.fig
Processing E:\Mat2009\toolbox\matlab\winfun\actxcontrolcreateproperty.fig
Processing include files...
2 item(s) added.
Processing directories installed with MCR...
The file e:\Mat2009\work\ntst\U\src\mccExcludedFiles.log contains a list of functions excluded from the CTF archive.
2 item(s) added.
Generating MATLAB path for the compiled application...
Created 41 path items.
Begin validation of MEX files: Wed Jan 16 13:42:47 2013
End validation of MEX files: Wed Jan 16 13:42:47 2013
Parsing file "e:\Mat2009\work\ntst\u1.m"
(Referenced from: "Compiler Command Line").
Parsing file "E:\Mat2009\toolbox\compiler\deploy\deployprint.m"
(Referenced from: "Compiler Command Line").
Parsing file "E:\Mat2009\toolbox\compiler\deploy\printdlg.m"
(Referenced from: "Compiler Command Line").
Deleting 0 temporary MEX authorization files.
Generating file "e:\Mat2009\work\ntst\U\src\U_main.c".
Generating file "e:\Mat2009\work\ntst\U\src\U_delay_load.c".
Generating file "e:\Mat2009\work\ntst\U\src\readme.txt".
Generating file "e:\Mat2009\work\ntst\U\src\U_mcc_component_data.c".
Executing command: mbuild -O -v -output "U" -I"e:\Mat2009\work\ntst\U\src" "e:\Mat2009\work\ntst\U\src\U_main.c" "e:\Mat2009\work\ntst\U\src\U_delay_load.c" "e:\Mat2009\work\ntst\U\src\U_mcc_component_data.c" -link exe -env MCR_DELAYLOAD=/delayload:mclmcrrt710.dll -env MCR_DELAYLIB=delayimp.lib -outdir "e:\Mat2009\work\ntst\U\src"
Error: An error occurred while shelling out to mbuild (error code = -1).
Unable to build executable.
??? Error using ==> mcc
Error executing mcc, return status = 1 (0x1).
There were errors during compilation process.
[EDITED, message formatted, Jan]

Sign in to comment.

Accepted Answer

Hany
Hany on 21 Jan 2013
Thank you ..but I edited COMSPEC env. var and deleted the path ";E:\mat_7\toolbox\compiler\mcr" and command !set again but i found COMSPEC still wrong
  2 Comments
Friedrich
Friedrich on 21 Jan 2013
Have you restarted MATLAB after doing so? Maybe also restart your PC to get 100% that the change is noticed by the system.
Jan
Jan on 21 Jan 2013
Huh, Hany. Please do not accept your answer, but Friedrich's. Because it has been such an excellent idea, it is sad that Friedrich does not get reputation points.
I'm asking the admins to move the acceptance flag.

Sign in to comment.

More Answers (6)

Friedrich
Friedrich on 21 Jan 2013
Edited: Friedrich on 21 Jan 2013
Hi,
I knew it^^ The COMSPEC env. var is not setup correctly for use with MATLAB. This variable should point to the command interpreter, which is usually:
%SystemRoot%\system32\cmd.exe
By adding another path to this variable, the command interpreter cannot be found for certain operations and the compilation fails. Please note that this is a MATLAB usability "feature".
So pelase fix that env. var COMSPEC to contain the path to cmd.exe only (so remove ";E:\mat_7\toolbox\compiler\mcr"). After that the compilation should be fine.
  2 Comments
Jan
Jan on 21 Jan 2013
A heroic problem solution. Congratulations!
Image Analyst
Image Analyst on 21 Jan 2013
I don't know much about that problem, since mine just works, but how did it ever get get messed up in the first place? When you install MATLAB shouldn't it set up all of that stuff automatically? If so, how might it have gotten changed? Did it have anything with the "system locale" conflict? I doubt the user would have gone in an edited the COMSPEC environment variable to add a second folder, so I don't know how this occurred.

Sign in to comment.


Jan
Jan on 16 Jan 2013
Avoid duplicate folder names:
Warning: Duplicate directory name: E:\Mat2009\work\ntst.
Warning: Duplicate directory name: e:\Mat2009\work\ntst.
What is written to the log file:
The file e:\Mat2009\work\ntst\U\src\mccExcludedFiles.log contains a list
of functions excluded from the CTF archive.
2 item(s) added.
? I'd exepect to find the required information there.
  11 Comments
Hany
Hany on 17 Jan 2013
the command:
mcc -l -c u1.m
output
mccExcludedFiles.log
and i could open it
text of (mccExcludedFiles.log):
This file contains the list of various toolbox functions that are not included in the CTF file. An error will be thrown if any of these functions are called at run-time. Some of these functions may be from toolboxes that you are not using in your application. The reason for this is that these toolboxes have overloaded some methods that are called by your code. If you know which toolboxes are being used by your code, you can use the -p flag with the -N flag to list these toolboxes explicitly. This will cause MATLAB Compiler to only look for functions in the specified toolbox directories in addition to the MATLAB directories. Refer to the MCC documentation for more information on this.
E:\Mat2009\toolbox\control\ctrlobsolete\connect.m called by
E:\Mat2009\toolbox\matlab\codetools\@codegen\@momento\momento.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not
($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m (E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab)) E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m <p>(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ...
$file in $toolbox and ...
$file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ...
and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\s
Jan
Jan on 17 Jan 2013
Edited: Jan on 17 Jan 2013
@Hany: Obviously you do not want to format your message to improve their readability. In addition posting giantic lists of messages is a bad idea: I you demonstrate, that you do not want to spend the time to find the relevant lines, you cannot assume, that others are encouraged to do so.
I'm convinced, that this is not a successful strategy for getting assistence in a forum. Some of the contributors are willing to spend more than an hour to solve a problem, but less than a minute to understand the problem. Therefore I suggest that you boil your problem down substantially. A good point to start from is deploying a much smaller example program at first and expand it step by step in the direction of the actual program until the first small error occurres. Then it will be much easier to investigate, explain and solve this problem. And let me repeat: The problem must be understood in 60 seconds - you never get more time in the real world from listeners outside your family.

Sign in to comment.


Hany
Hany on 19 Jan 2013
I am sorry Jan but i already formatted a big part of message but it's too long and similar for the rest message but different toolboxes this is a formatted part of the message I hope this well formatted for you..
text of (mccExcludedFiles.log):
This file contains the list of various toolbox functions that are not included in the CTF file. An error will be thrown if any of these functions are called at run-time. Some of these functions may be from toolboxes that you are not using in your application. The reason for this is that these toolboxes have overloaded some methods that are called by your code. If you know which toolboxes are being used by your code, you can use the -p flag with the -N flag to list these toolboxes explicitly. This will cause MATLAB Compiler to only look for functions in the specified toolbox directories in addition to the MATLAB directories. Refer to the MCC documentation for more information on this.
E:\Mat2009\toolbox\control\ctrlobsolete\connect.m called by
E:\Mat2009\toolbox\matlab\codetools\@codegen\@momento\momento.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not
($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m (E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab)) E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by
E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m (E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
(E:\Mat2009\toolbox\compiler\depfun.opts, line 7:
exclude if $caller in [$toolbox/matlab, $toolbox/daq] and ... $file in $toolbox and ... $file not in [$toolbox/matlab, $toolbox/shared, $toolbox/compiler] ... and not ($file in $toolbox/distcomp and $caller in $toolbox/matlab))
E:\Mat2009\toolbox\control\ctrlobsolete\series.m
called by E:\Mat2009\toolbox\matlab\specgraph\bar.m
  3 Comments
Jan
Jan on 19 Jan 2013
The formatting works well, when you mark the message with the mouse, click on the "{} Code" button and insert an empty line above and below the code. Inserting a blank line after each line of the message does not increase the readability.
However, I claim that your problem cannot be solved if you do not narrow it down. This is the largest thread at all in the forum, but it is not clear if it contains at least any useful information, because the large number of not useful information could cover the details.
Therefore I give up here. Good luck!
Image Analyst
Image Analyst on 19 Jan 2013
I didn't even start. If the information in the FAQ doesn't help, then call the Mathworks. The compiler is very very expensive so you might as well get your money's worth.

Sign in to comment.


Hany
Hany on 21 Jan 2013
Thank you any way Jan...
  2 Comments
Hany
Hany on 21 Jan 2013
may be we can try again , the output of deploytool:
MATLAB:I18n:InconsistentLocale - The system locale setting, English (United States)_United States.1252, is different from the user locale setting, Arabic (Egypt)_Egypt.1256.
mcc -o 'U1' -W 'WinMain:U1' -d 'e:\Mat2009\work\ntst1\U1\src' -T 'link:exe' -v 'e:\Mat2009\work\ntst1\nt1.m'
Compiler version: 4.10 (R2009a)
Processing e:\Mat2009\work\ntst1\nt1.fig
Processing E:\Mat2009\toolbox\matlab\guide\guideopts.fig
Processing E:\Mat2009\toolbox\matlab\winfun\actxcontrolselect.fig
Processing E:\Mat2009\toolbox\matlab\winfun\actxcontrolcreateproperty.fig
Processing include files...
2 item(s) added.
Processing directories installed with MCR...
The file e:\Mat2009\work\ntst1\U1\src\mccExcludedFiles.log contains a list of functions excluded from the CTF archive.
2 item(s) added.
Generating MATLAB path for the compiled application...
Created 41 path items.
Begin validation of MEX files: Mon Jan 21 11:12:24 2013
End validation of MEX files: Mon Jan 21 11:12:24 2013
Parsing file "e:\Mat2009\work\ntst1\nt1.m"
(Referenced from: "Compiler Command Line").
Parsing file "E:\Mat2009\toolbox\compiler\deploy\deployprint.m"
(Referenced from: "Compiler Command Line").
Parsing file "E:\Mat2009\toolbox\compiler\deploy\printdlg.m"
(Referenced from: "Compiler Command Line").
Deleting 0 temporary MEX authorization files.
Generating file "e:\Mat2009\work\ntst1\U1\src\U1_main.c".
Generating file "e:\Mat2009\work\ntst1\U1\src\U1_delay_load.c".
Generating file "e:\Mat2009\work\ntst1\U1\src\readme.txt".
Generating file "e:\Mat2009\work\ntst1\U1\src\U1_mcc_component_data.c".
Executing command: mbuild -O -v -output "U1" -I"e:\Mat2009\work\ntst1\U1\src" "e:\Mat2009\work\ntst1\U1\src\U1_main.c" "e:\Mat2009\work\ntst1\U1\src\U1_delay_load.c" "e:\Mat2009\work\ntst1\U1\src\U1_mcc_component_data.c" -link exe -env MCR_DELAYLOAD=/delayload:mclmcrrt710.dll -env MCR_DELAYLIB=delayimp.lib -outdir "e:\Mat2009\work\ntst1\U1\src"
Error: An error occurred while shelling out to mbuild (error code = -1).
Unable to build executable.
??? Error using ==> mcc
Error executing mcc, return status = 1 (0x1).
There were errors during compilation process.
Friedrich
Friedrich on 21 Jan 2013
Hi, do you have the environment variable COMSPEC setup correctly? In order to check that please run !set in MATLAB. This will print out all environment variables you have set on your machine. Post the output here.

Sign in to comment.


Hany
Hany on 21 Jan 2013
ok the output of !set :
>> !set
ALLUSERSPROFILE=C:\Documents and Settings\All Users.WINDOWS.4
APPDATA=C:\Documents and Settings\Hany.FME-560DD15B3B3\Application Data
CLIENTNAME=Console
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=FME-560DD15B3B3
ComSpec=C:\WINDOWS.4\system32\cmd.exe;E:\mat_7\toolbox\compiler\mcr
CPU=x86
FP_NO_HOST_CHECK=NO
HOMEDRIVE=C:
HOMEPATH=\Documents and Settings\Hany.FME-560DD15B3B3
include=C:\Program Files\Microsoft Visual Studio\VC98\atl\include;C:\Program Files\Microsoft Visual Studio\VC98\mfc\include;C:\Program Files\Microsoft Visual Studio\VC98\include
lib=C:\Program Files\Microsoft Visual Studio\VC98\mfc\lib;C:\Program Files\Microsoft Visual Studio\VC98\lib
LOGONSERVER=\\FME-560DD15B3B3
MATLAB_ARCH=win32
NUMBER_OF_PROCESSORS=2
OS=Windows_NT
Path=E:\Mat2009\bin\win32;E:\Mat2009\sys\java\jre\win32\jre\bin;E:\Mat2009\sys\webrenderer\windows\corecomponents;E:\Mat2009\sys\webrenderer\windows;E:\mat7\bin\win32;C:\Program Files\Common Files\Siemens\Sqlany;C:\Program Files\Siemens\Step7\S7bin;C:\Program Files\Common Files\Siemens\bin;C:\WINDOWS.4\system32;C:\WINDOWS.4;C:\WINDOWS.4\System32\Wbem;"C:\Program Files\PKWARE\pkzipc";C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Danfoss Drives\Communication Module\bin;E:\mat_7\toolbox\compiler\mcr\matlab\codetools;E:\mat7\bin\win32;E:\Mat2009\bin;E:\Mat2009\bin\win32;I:\MCR\v70\runtime\win32;C:\Program Files\MATLAB\MATLAB Compiler Runtime\v710\runtime\win32;C:\Program Files\Microsoft Visual Studio\Common\Tools\WinNT;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;C:\Program Files\Microsoft Visual Studio\Common\Tools;C:\Program Files\Microsoft Visual Studio\VC98\bin;C\system32;C:\Windows;C:\Windows\System32\Wbem;E:\Mat2009\bin;E:\Mat2009\bin\win32
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 10, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=170a
ProgramFiles=C:\Program Files
PROMPT=$P$G
S7TMP=C:\Program Files\Siemens\Step7\S7Tmp
SESSIONNAME=Console
SQLANY=C:\Program Files\Common Files\Siemens\Sqlany
SystemDrive=C:
SystemRoot=C:\WINDOWS.4
TEMP=C:\WINDOWS.4\TEMP
TMP=C:\WINDOWS.4\TEMP
USERDOMAIN=FME-560DD15B3B3
USERNAME=Hany
USERPROFILE=C:\Documents and Settings\Hany.FME-560DD15B3B3
VS100COMNTOOLS=C:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\
windir=C:\WINDOWS.4
XPCOM_CHECK_THREADSAFE=0
__COMPAT_LAYER=EnableNXShowUI
>>

Hany
Hany on 21 Jan 2013
I restarted matlab and tried again ....it is working now Thank you very much

Categories

Find more on Write C Functions Callable from MATLAB (MEX Files) in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!