I\'m using System.Xml.Linq to parse MathML 2.0 via its associated DTD. Everything is fine except that Maple produces the ⁡ element which does not appear to be a DTD. Where is this el
I have defined a simple function: c(n) = 2 * floor((n mod 24) / 12) I want to compute the sum c(0) + c(1) + ... + c(n) with Maple, but the s开发者_C百科ums Maple computes are wrong. Here is a scree
I am trying to solve theseequations: S := solve({PVA1+PSA1+PPA1=1,开发者_如何转开发PVA2+PSA2+PPA2=1,PVA3+PSA3+PPA3=1,PVA1*0.2+PVA2*0.5+PVA3*0.3=0.3,PSA1*0.2+PSA2*0.5+PSA3*0.3=0.2,PPA1*0.2+PPA2*0.5+PP
So I want to share some of my maple code files with world. I would like to use google code svn for it. But as far as I know maple saves files not in a source/text way.
I am trying to parse data such as: 29 28 23 19 14 11 13 17 36 26 21 21 13 8 7 6 54 33 25 26 18 13 10 3
So I had a system #for given koefs k:=3; n:=3; #let us solve system: koefSolution:= solve({ sum(a[i], i = 0 .. k) = 0,
How to input such system into maple so that it would solve it? BTW we some part of system will be given to us,, which we do not know certently - may be some Ai\'s may be someBi\'s as constants. we
So I have some array called params[]开发者_如何学Go; there arethings like a[0] = 2 in it. I want to make all such items real meaning I would call a[0]; and get 2. How to do such thing in maple?These a
I need to import animatio开发者_StackOverflow中文版ns from Maple into my LaTeX/Beamer presentation. I save a file in GIF format. But later I have problems converting that file into PNG. All I get is a
I\'ve got two sequences with variable boundaries like > a:=Sum(x(i),i=n..m); > b:=Sum(x(i),i=开发者_JS百科n-1..m+1);