Nothing will publish at all.
17 views (last 30 days)
Show older comments
No matter what kind of output format or what script I try to publish everything gives me the same error. I have even tried matlabs examples scripts, which run perfectly fine but then fail when I try to publish it fails.
This is the Error:
Error using filter
Too many input arguments.
Error in polyval (line 56)
y = filter(1,[1 -x],p);
Error in internal.matlab.publish.make_thumbnail>design_filter (line 81)
b = b/abs(polyval(b,1)); % norm
Error in internal.matlab.publish.make_thumbnail>shrink_columns (line 49)
b = design_filter(11, scale)';
Error in internal.matlab.publish.make_thumbnail (line 26)
temp(:,:,k) = shrink_columns(in(:,:,k), out_size(1));
Error in internal.matlab.publish.writeImage (line 35)
x = internal.matlab.publish.make_thumbnail(x,newDims);
Error in evalmxdom>createThumbnail (line 291)
internal.matlab.publish.writeImage( ...
Error in evalmxdom (line 23)
createThumbnail(options,data)
Error in publish (line 191)
dom = evalmxdom(file,dom,cellBoundaries,prefix,imageDir,outputDir,options);
Error in mdbpublish (line 55)
outputPath = publish(file, options);
Error using open (line 51)
NAME must contain a single character vector.
4 Comments
Walter Roberson
on 30 Oct 2017
You need to rename U:\MATLAB\filter.m or make sure it is taken off of your MATLAB path.
Answers (0)
See Also
Categories
Find more on Conditional Mean Models 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!