我有以下函数定义(测试代码):
function [X,Y,Z] = test(x,y,z)
syms a b c;
a = b + c; % This is where it gets wrong
X=x;
Y=y;
Z=z;
keyboard
% nested functions
function y = fun1(t,x)
y=t+x;
end
function res = bvpbc(y0,yT)
res= y0+yT;
end
end
基本上,我在函数中有一些嵌套函数,test
我在其中声明了一些符号变量a
,b
和c
. 但是,当我通过键入运行该功能时
test(1,1,1)
总是有这个错误信息:
Error using assignin
Attempt to add "b" to a static workspace.
See MATLAB Programming, Restrictions on Assigning to
Variables for details.
Error in syms (line 66)
assignin('caller',x,sym(x));
Error in test (line 3)
syms a b c;
符号声明似乎有问题,但我不明白为什么。我该如何解决?
谢谢!
编辑:此外,每当我删除两个嵌套函数时,该test
函数都会正常工作。