Funny Behavior When Doing Substitution w/ matlabFunction Files

1 次查看(过去 30 天)
I have a symbolic function that I convert to a numeric file using matlabFunction. Then, using the find_and_replace function from the file exchange I substituted out several arguments and replace them with elements of a matrix.
So whereas before my function was something like
function H = H(arg1a,arg2a,arg1b,arg2b)
H = arg1a + arg2a + arg1b + arg2b;
end
It is now
function H = H(arg_a,arg_b)
H = arg_a(1) + arg_a(2) + arg_b(1) + arg_b(2);
end
Two odd things happen:
  1. If I try to run the second function I get the error 'Not enough input arguments.'
  2. If I a) open the script b.) delete a semicolon c.) save d.) add the semicolon e.) save, then everything runs well.
Any ideas of what might be going on here?

采纳的回答

Walter Roberson
Walter Roberson 2015-12-17
MATLAB did not detect that you had modified the file and used the one that was already in its cache. It would also have worked if you had used
clear H
When-ever you use code to modify a .m file that you have executed, you should "clear" the function.
Note that there is a better way of doing what you did. See http://www.mathworks.com/help/symbolic/matlabfunction.html#zmw57dd0e82644 and the example "Now, convert an expression r to a MATLAB function whose second input argument is a vector."
  2 个评论
William Wooley
William Wooley 2015-12-17
Two great tips. Thanks! I can't believe I overlooked that part of the documentation.
Walter Roberson
Walter Roberson 2015-12-17
I think it might be relatively new. I only noticed that in the documentation a few months ago.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by