|
"mahshid " <mahshid770@yahoo.com> wrote in message <i9oc7k$8f5$1@fred.mathworks.com>...
> Hi Matt,
>
> here is the entire text of the error:
> ??? Undefined function or method 'F' for input arguments of type 'double'.
>
> Error in ==> NE at 200
> qz = F(qx,qy);
Great, we are getting somewhere! Now, according to your thinking, is F a function or a variable? If you were thinking that F is a variable, MATLAB doesn't see where you defined it. You need to make sure it is defined in the local workspace. If you were thinking that F is a function, what kind of function is it? Is it an M-File function? If so, is it in the local directory or on the search path? These are the kinds of questions you need to ask yourself in figuring out what went wrong.
|