https://bugs.kde.org/show_bug.cgi?id=420708
--- Comment #4 from [email protected] --- (In reply to Nikita Sirgienko from comment #3) > 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)) > ```` I feel so dumb right now. I was translating word by word and I wrote "function". It also crashes the way you proposed. -- You are receiving this mail because: You are watching all bug changes.
