matlab中出现Attempt to execute SCRIPT poly as a function怎么解决啊?

试图执行脚本聚一个函数内

第1个回答  2011-06-14
今天在matlab中画直方图,可以采用bar函数完成。但是在今天使用时却出现了一个错误。

程序为:

clear all; close all; clc;
x = [0.2038 0.2471 0.2905 0.3338 0.3772 0.4206 0.4639 0.5073 0.5506 0.5940 0.6374 0.6807 0.7241 0.7674 0.8108];
y = load('D:\MATLAB\work\tongji.txt');

bar(x,y,'grouped')

弹出错误为:Attempt to execute SCRIPT a as a function.

仔细检查了程序,应该没有错啊。然后在网上搜索,google 百度上说 出现这种错误通常是因为变量名和函数名重名。检查变量名没有重名啊,最后在一个外文网站上才发现,错误原来在文件名上。我的文件名是:bar.m,和命令bar出现了重复。现在看来变量名、文件名和函数名重复,都会出现Attempt to execute SCRIPT a as a function 这个错误了。本回答被网友采纳

...Attempt to execute SCRIPT class as a function.,该怎么解决_百度...
??? Attempt to execute SCRIPT error as a function 这句话的意思是尝试将脚本文件当做函数文件。你运行时出错的原因可能是m文件开头没写函数名,或者是函数名与内部函数名冲突了。请把一下代码保存为myCode.m, 然后再按F5执行:function myCode( )clc;syms a x;f=a*sin(x)+5;f1=subs(f,'...

...提示Attempt to execute SCRIPT delaunay as a function.
把那个重名文件删了就好了

matlab无法运行 Accept script XX as functions的错误
1,有中文路径,可能会造成错误 2,根据错误信息,是想把script文件当成function文件运行,可能是加了参数把script当成的函数文件 比如 我有 s = tf('s'); Gs = (s+1)\/(s^2*(s+10)); figure rlocus(Gs)保存为m文件 运行 autoplot(1)Attempt to execute SCRIPT autoplot as a function:E:\\...

MATLAB为什么总出Attempt to execute SCRIPT my as a function:
Attempt to execute SCRIPT my as a function 是说你程序中的函数对应文件是脚本(可直接运行的程序段),不是函数(function)建议检查一下目录下newton、n_f、n_df三个文件是不是对应的函数文件

...Attempt to execute SCRIPT imshow as a function.
需要一些单色和彩色图,于是拿出原来的程序、再次打开matlab。为了区分图是plot画出来的,还是imshow画出来的,想都没想就把两个文件分别命名为”plot.m”、”imshow.m”,结果就出现了下面的错误:??? Attempt to execute SCRIPT imshow as a function.有些不解,这个错误貌似以前没有碰到过。百度了一...

...Attempt to execute SCRIPT myfun as a function.
x = fsolve(@(x)sin(x.*x),x0);x = fsolve(@myfun,x0)myfun.m 为求解高阶非线性方程组函数 function F=myfun(x,c1,c2,c3)d1=(log(x(1)\/DP)+(r+x(2)^2\/2))\/x(2)F=[x(1)*normcdf(d1,0,1)-exp(-r)*c1*normcdf(d1-x(2),0,1)-c2;normcdf(d1,0,1)*x(1)...

...时出现 Attempt to execute SCRIPT fmincon as a function: D:\\Matl...
1、主程序应该是最后面从x0开始的那3行,fun23只是目标函数;2、目标函数的function关键字错误;3、约束条件里面第一行给c赋值语句错误;4、调用fmincon的约束条件函数名与所给的不符;5、从报错信息看,题主很可能把主程序保存成fmincon.m了,这样会导致最优化工具箱中的fmincon被遮挡而无法调用。

...Attempt to execute SCRIPT gui_mainfcn as a function.是什么原因...
从报错信息看,是你的gui_mainfcn缺少function这样的函数头,造成了报错!具体的还要看你的文件。

matlab高手求助 histeq的问题
B=histeq(A)??? Attempt to execute SCRIPT imhist as a function:C:\\Users\\Wilson\\Desktop\\imhist.mError in ==> histeq>computeCumulativeHistogram at 184nn = imhist(img,nbins)';Error in ==> histeq at 141 [nn,cum] = computeCumulativeHistogram(a,n);不知道哪位高手可以帮忙 ...

为什么用matlab绘图出现黑屏?
Attempt to execute SCRIPT error as a function.你的脚本文件命名是不是出了问题.最好不要跟其他函数的名称一致,或者是你的文件路径不一致.

相似回答