Replies: 1 comment 1 reply
-
(The issue here is a Maxima issue, it has nothing to do with the graphical frontend wxMaxima).
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
kill(a(k))
and maxima gives improper argumenta(k) and there is absolutely NO reason for not allowing this and there could
NEVER be any source of confusion or ambiguity in not allowing this ! Also
tk:(1+2*k+3*k^2+n)/(1-k+k^2-n^2)
ak:part(tk,1);
gives as it should, the expression we want but if i do
ak(n,k):=part(tk,1)
It just repeats the definition form and NOT what one wants which is the same output as for ak:...
Again no reason as could never cause any confusion or ambiguity. Another unnecessary bottleneck.
(for a[1]:0 thru 2 do for a[2]:a[1] thru 3 do a[3]:2a[1]+a[2]);
maxima gives [ is an unknown.....NOw i do the exact same
(for a:0 thru 2 do for b:a thru 3 do c:2a+b);
and maxima accepts. What is the reason for maxima giving errors when there is no need to do so and not accept these
statements when there could never be any source of confusion or reason for not accepting as given. All it does is just cause inconvenience for the input person.
Beta Was this translation helpful? Give feedback.
All reactions