Assistance with simple error
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I am copying the code below from this page, but it says error
"Undefined function 'a' for input arguments of type 'char'."
Could anybody tell me what is wrong?
Thanks
a := [6, 9, 17, 0, 13, 9, 9, 12, 12, 12]:
b := [7, 8, 20, 2, 11, 8, 9, 12, 13, 15, 2, 14]:
q := plot::QQplot(a, b):
plot(q)
0 个评论
采纳的回答
Walter Roberson
2012-12-10
编辑:Walter Roberson
2012-12-10
Provided you have the symbolic toolkit, at the MATLAB command line use
a = [6, 9, 17, 0, 13, 9, 9, 12, 12, 12];
b = [7, 8, 20, 2, 11, 8, 9, 12, 13, 15, 2, 14];
feval(symengine, 'plot::QQplot', a, b);
0 个评论
更多回答(4 个)
Muruganandham Subramanian
2012-12-10
编辑:Muruganandham Subramanian
2012-12-10
Check this:
I don't have r2012b version
a = [6, 9, 17, 0, 13, 9, 9, 12, 12, 12];
b = [7, 8, 20, 2, 11, 8, 9, 12, 13, 15, 2, 14];
plot::QQplot([a, b]);
Wayne King
2012-12-10
Are you trying to enter this directly at the MATLAB command prompt?
You have to first enter
>>mupad
Then copy and paste the code in the MuPAD notebook and hit enter
Wayne King
2012-12-10
Do you have the Statistics Toolbox? If so you don't need to use MuPAD
a = [6, 9, 17, 0, 13, 9, 9, 12, 12, 12];
b = [7, 8, 20, 2, 11, 8, 9, 12, 13, 15, 2, 14];
qqplot(a,b)
Sean de Wolski
2012-12-10
And in MuPAD, all you have to do is paste what you have above into a code line.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!