Tagged Questions
Programming questions related to the computer algebra system Maple.
3
votes
4answers
220 views
Which one of C# and Java is more easy and fast when interfacing with Statistics/Simulation Softwares?
First, I know almost nothing about the interfacing of this type and this is the first time, I'm trying it out. I am looking to use one of the Statistics/Simulation software either Maple or Mathematica ...
2
votes
4answers
150 views
snprintf crash when displaying %d or %u
I'm trying to print an integer into a string with snprintf for display on an OLED display from an ARM micro. However, when I use %d or %u the micro locks up and stops executing.
Using %x or %c works ...
2
votes
1answer
49 views
How can I change an element in a matrix in Maple?
The question is:
How can I change an element in a matrix in Maple?
Is it possible?
2
votes
2answers
178 views
Maple 13: how to turn true into 1 and false into 0?
generaly what I need is type transformation instructions to be capable of for example multipliiing on true like 5 * true and get5 of say x * false and get 0.
How to do such thing?
1
vote
2answers
140 views
Need Mathematica short code like these same from Maple
I have one problem with exportation results from Mathematica. Two matrices A and B have to be exported in special form.
These two codes make a list of data exported from Maple.
It is important that ...
1
vote
1answer
48 views
Defining Taylor Series in Maple
I am attempting to define a function in Maple that defines the Taylor Series (without using the taylor() command). I am using the sigma notation definition as found here.
Essentially, I need a ...
1
vote
1answer
113 views
How to avoid numeric exception : overflow in Maple 14?
Maple 14 has isprime command which testing whether number is prime or not. It's allowed to write expressions as input data so we may write the next command :
isprime(2^(3^43-5)-1);
but I get ...
1
vote
1answer
55 views
Maple: How to give values to assumptions for plotting?
So I have a simple example of what I want to do:
restart;
assume(can, real);
f := {g = x+can*x*y, t = x+x*y};
assign(f[1]); g;
can := 2;
plot3d(g, x = 0 .. 100, y = 0 .. 100);
while this works:
...
1
vote
4answers
344 views
Sketching solution curves for differential equations
I have a few differential equations that I'd like to draw solutions for, for a variety of start values N_0
Here are the equations:
dN\dt= bN^2 - aN
dN\dt = bN^2 (1 - N\K) - aN
How would I go ...
1
vote
1answer
268 views
Translation from Maple to C++
Hey,
So I have a maple program which does bisection method and I have to convert it to C++. I tried converting it according to what the code generation help on the maple forums said but it kept ...
1
vote
1answer
130 views
Maple don't solve equations
I am trying to solve these equations:
S := solve({ PVA1+PSA1+PPA1=1, ...
1
vote
1answer
196 views
Maple Code Generation: How to declare variables automatically?
In Maple (version 14, if it matters), I define a procedure that uses a globally-defined expression in maple, but when I go to code generation, it assumes the variable is not what I am expecting.
...
1
vote
1answer
305 views
Find out how many digits a number as in Maple
I'm trying to implement a basic procedure to generate an RSA key. The procedure accepts a range of numbers a and b. It has to check that the intervall between a and b is "five digits".
So I came up ...
1
vote
1answer
84 views
How do I input this system into maple?
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 some Bi's as constants. we ...
1
vote
2answers
2k views
How to import GIF files into Beamer presentation?
I need to import animations 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 static PNG file and can't ...
1
vote
3answers
597 views
Factoring matrices into elementary matrices
Is there a package in MATLAB, Maple or Mathematica which does this?
1
vote
1answer
73 views
Help importing .pdb file into Maple
I realy know nothing about Maple, so any help would be nice. I am attempting to import a .pdb file into Maple, as part of converting some Mathematica code to Maple. I need something that that can ...
1
vote
1answer
224 views
Maple 13 variable assignment does not work
Please refer to the screenshot.
I assigned Qswap to a matrix and when I try to view Qswap, it has nothing assigned to it!
Help will be appreciated =)
1
vote
4answers
617 views
maple 13 tridiagonal matrix help
i am trying to make a 100 x 100 tridiagonal matrix with 2's going down the diagonal and -1's surrounding the 2's. i can make a tridiagonal matrix with only 1's in the three diagonals and preform ...
1
vote
3answers
485 views
Grabbing the output of MAPLE via Python
How would I use the subprocess module in Python to start a command line instance of MAPLE to feed and return output to the main code? For example I'd like:
X = '1+1;'
print MAPLE(X)
To return the ...
0
votes
0answers
27 views
Mac does not see Maple Rev. 5
I recently got a Maple Rev. 5 development board to use with my Mac, but when I go to the tools menu in the latest IDE, I do not see the USB port the Maple is on — just Bluetooth-PDA-Sync and ...
0
votes
0answers
46 views
Maple: Galois Field with characteristic 2 GF(2m) - how to solve systems? [closed]
Maple: Galois Field with characteristic 2 GF(2m) - how to solve systems (like this given G16:
simple solution would look like
But I wonder how to solve it automatically in maple using its GF ...
0
votes
2answers
88 views
Matlab Vs. Maple for curve fitting to data, finding eq'n of curve then integrating through code
Im sure there are a thousand different posts on Maple vs Matlab, but i have a bit of a unique set of requirements and before i go off to learn one of the two i would like to know which one will do it ...
0
votes
1answer
59 views
Maple matrix displays as raw text
I have a real serious problem with maple, I can't get it to display matrixes probably.
When i input a matrix like <<4,2>|<2,4>> it outputs:
Matrix(2, 2, {(1, 1) = 4, (1, 2) = 2, (2, ...
0
votes
1answer
26 views
`if a = 0 mod p then` in Maple only works when a = 0.
I need it to show the message every time a = 0 (mod p). But it only does it when a is actually 0. For example, if I plug Legendre(11,11), I get "-1".
Legendre := proc (a, p)
local L; if a = `mod`(0, ...
0
votes
1answer
32 views
Programming in Maple for first time: “Illegal use of formal parameter”
I keep getting that error. Here's the code (it's for GCD):
Euc := proc (a, b)
if b = 0 then a;
else c := b;
d := a mod b;
b := d; a := c;
end if;
end proc;
I never use Maple because it gives me a ...
0
votes
1answer
25 views
Importing file into maple on a mac, correct filepath or default directory
I want to import a (text) file into maple on a mac.
According to all available information, the command should be of the form
read "MacIntosh HD/Programme/myfile"
but I did not succeed.
I ...
0
votes
2answers
49 views
Indefinite number of variables in maple
If I want to define a function f(n) that calculates the determinant of a n times n-matrix like the Vandermonde determinant containing n variables x1,...,xn what is a good way to define the variables ...
0
votes
1answer
37 views
Maple: having an array of length=L how to create arrays with all possible permutation with out repetition?
So we have an array x:=[a,b,c]. all its possible permutation with out repetitions are [a,c,b], [b,c,a], [b,a,c], [c,a,b], [c,b,a]. How to create some vector that will hold initial x and all its ...
0
votes
1answer
41 views
Maple: Why I can not plot my function which is definrd by proc?
So I created a proc that returns a value. (sqrt analog that is correct for numbers from (2.1) and up). I can evaluate it for any given number but I cannot plot it. Why and how to fix it?
code ...
0
votes
2answers
37 views
insert element in every position of nested list
In Maple 15, I have a nested list like this one (only 2 levels of nesting):
[[a,b],[c],[d,e,f]]
I want to create 6 lists from that one (the number of elements..), like these:
[[x,a,b],[c],[d,e,f]]
...
0
votes
0answers
27 views
Why I have same solution for each equasion of the system, but difrent from solution for a system?
So I have 2 equations which I solve:
And as you can see than I try to solve a system from that 2 expressions. And I get difrent results.. Why? Should not thay be same?
0
votes
2answers
55 views
Maple: How having assumptions for variables to be from real range to solve such equasion?
So I have an equation like this:
I need to get G[xy]. How to tell Maple that we are assuming that G[xx], G[xy] are values from real range (So Im(G[xx]) == 0 and Re(G[xy]) == G[xy]) and find G[xy] ...
0
votes
1answer
27 views
Maple: How having f(z) create f'(z), where z is complex variable?
So I have f(z), z:= a + I*b I want to create f`(z) capable of working with my z.
First time I tried fd:= diff(f(z), z) but my code fails with Error, (in fd) invalid input: diff received a+I*b, which ...
0
votes
2answers
56 views
Maple: simplifying Im(a+I*b) - why it does not work for me?
So I want to simplify z:=a+I*b; Im(z) where a, b are real variables So I try:
s:= 1+2*I
Im(s) // outputs 2
z:=a+I*b
Im(z) // outputs Im(a+I*b)
So I wonder is it any how possible to simplify Im(z) ...
0
votes
2answers
68 views
How do you create parametric distribution?
I'm trying to create Skewed Normal distribution with the following PDF
I'm using the following command for that (referenced from http://en.wikipedia.org/wiki/Skew_normal_distribution):
I'm trying to ...
0
votes
1answer
63 views
invalid subscript selector problem in function list for loop
This eval(subs(x=0,test[i])^2) output error, invalid subscript selector in maple
problem is test[i] in for loop, how to avoid this error?
evolf := proc(z, f)
h1 := z + f;
h2 := z - f;
h3 := z*f;
h4 ...
0
votes
1answer
270 views
Maple: How to convert Cylindrical coordinates to Cartesian coordinates?
We get some expression in Cylindrical coordinates (r, ϕ, z ) like : expr := r*z^2*sin((1/3)*ϕ) we need to convert it into Cartesian coordinates and than back to Cylindrical coordinates. ...
0
votes
1answer
84 views
Maple ODE solving, Graphic is not complete. Why?
So we try to solve simple ODE. We use text book (warning - russian). This is code presented as sample in book (page 18):
> with(DEtools); with(plots);
> eq1 := diff(x(t), t) = y(t); eq2 := ...
0
votes
1answer
210 views
Question about using Maple's arrow (->) notation
Hi can someone show me how to do this:
Your function should take a Maple list of complex numbers as its input and return the largest modulus from that list.
0
votes
1answer
138 views
How to extract coefficient in maple?
I'm using maple for differentiation eguation. And I have a problem. I want to express the d/dt(alpha(t)) variable held constant from this equation (a part for example):
-2*(diff(alpha(t), ...
0
votes
1answer
116 views
size of a set in Maple
Sorry for my dumb question, but
how can I get the size of a set (the max index number)?
Is there a built in function, or i have to count it in a loop?
0
votes
0answers
144 views
Maple - show solution of simplex method in detail?
I found this grate method for solving sistems using maple like if were solving tham by hand. (ofcourse we could just set infolevel up but we want to get matrices out of our programm - not just info) I ...
0
votes
0answers
26 views
Maple - how to give your own name to _SL* variables?
So having to solve simple sistem with some Simplex method and if you need to show to your teacher or any one your programm you have to get a way to make _SL stuff look pretier - for example with one ...
0
votes
1answer
41 views
Maple, regExp: How to parse “pn2 = -.433222082282652077” into “pn2” and “-0.433222082282652077”?
So I have a string
pn2 = -.433222082282652077
I need to parse it with reg exp into 2 strings (put values into 2 variables)
First A:
pn2
Second B:
-0.433222082282652077
How to do ...
0
votes
1answer
121 views
Maple - how to print assign of an array into xml file?
So I perform some operation like
out := Minimize(function(param1, paramN));
from this I getsomething like array of pairs Name=Value printed out
and than I do:
assign(out[2]);
I want to ...
0
votes
1answer
69 views
MathML ApplyFunction Entity - where does it come from?
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 ...
0
votes
1answer
117 views
strange behaviour of maple when computing a sum with modulo
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 sums Maple computes are wrong. Here is a screenshot of an ...
0
votes
2answers
97 views
Is it possible to save maple 13 file so that svn would recognize it as a text file?
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.
So is it possible to save maple ...
0
votes
1answer
96 views
Why does Maple fail when reading Comma/Space Separated Values and how to fix it?
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
70 45 29 26 20 19 16 6
85 63 41 27 22 23 20 13
94 82 58 36 27 25 20 18
93 91 76 53 36 26 ...