PROBELEM IN MY CODE (matlab r2011b)
1 次查看(过去 30 天)
显示 更早的评论
P=inline('sin(4*x + 4*y)','x','y')
Q=inline('cos (4*x-4*y)','x','y')
x=linspace(-4,4,20)
y=linspace(-4,4,20)
[X,Y]=meshgrid(x,y)
p=P(X,Y)
q=Q(X,Y)
quiver(X,Y,p,q)
My error
Attempt to execute SCRIPT inlineeval as a function: C:\Program Files\MATLAB\R2011b\toolbox\matlab\funfun\inlineeval.m
Error in inline/subsref (line 24) INLINE_OUT_ = inlineeval(INLINE_INPUTS_, INLINE_OBJ_.inputExpr, INLINE_OBJ_.expr);
Error in Untitled5 (line 6) p=P(X,Y);
2 个评论
Walter Roberson
2011-12-26
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
What is the difference between what you expect and what you get? Does the code produce an error message? Which message and which line?
采纳的回答
Walter Roberson
2011-12-26
My guess would be that you have a corrupted installation.
I never use inline functions myself; I prefer to use anonymous functions, or just to make direct calls as in your previous question
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!