3

我有以下函数定义(测试代码):

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,bc. 但是,当我通过键入运行该功能时

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函数都会正常工作。

4

1 回答 1

2

以下最小的工作示例重现了该问题,正如Andrew Janke在评论中解释的那样,这不是错误:

function foo
syms A

    function nested
    end

end

您可以通过将符号变量显式分配给工作区来解决它:

A = sym('A');
于 2013-06-14T11:28:26.007 回答