https://bugs.kde.org/show_bug.cgi?id=420708
--- Comment #3 from Nikita Sirgienko <warqu...@gmail.com> --- Also, if I am not mistaken, your code just not workable. You declare symbolic function named 'function', but the word 'function' reserved by Octave, so, if you will run this in Octave, you will got something like that ```` >> syms function(x,y) error: assignin: invalid assignment to keyword 'function' error: called from syms at line 175 column 7 ```` Could you will try this? ```` pkg load symbolic syms x syms y syms f(x,y) f(x,y)=sin(x)+y ezsurf(f(x,y)) ```` -- You are receiving this mail because: You are watching all bug changes.