These are questions asked by
vineetloya
Hello,
I am working on a project where Maple's output is fed to another software which requires all it's input in specific format. So, I want to print this expression,say
y=+2.*x+.2, in this software, but it takes input as
y=2*x+0.2, So now I have to change
+2. to 2.0 or 2 (if it's starting of the equation)
-2. to -2.0
.2 to 0.2
Is there any way to convert all the numbers in the equation to...
Hello,
I am working on a Maple project and it require me to pass a differential equation in a specific order like
x'=y & y'=x^2.(It is differentaiting w.r.t 't'(say))
However when I convert the equation into string it converts something as
diff(x(t),t)=y(t) & diff(y(t),t)=x(t)^2
Is there any way to stop maple from evaluating into maple/math format?
Is there any way to pass an equation without changing it's existing form?...
Hello,
I was wondering if there is any function to represent matrices into linear equations. For an example,
if A=
, B=
and C=
Hello,
I have defined a function(say fun) to do certain task, it works well when I call it from a script file(say script1). However, when I copy the complete script1 and paste onto another script file(say script2), the function, fun, doesn't execute. It's very peculiar as my project requires lot of modification, so I copy the old script and...
Hello,
1. Is it possible to create a function file in Maple and call the function(file) from the main program(like Matlab?). If yes, please give me an example case.
I want to create a function file which has the general input terms and call the function from another script file without copying/running all the code.
2. Is it possible to run 'recursive function' in maple?
3. How can I create library of my function files?(like in Matlab I can create...
How to extract affine terms from a differential equation after linearization?
Vanderpol Eqn:
,t)=x[2](t)](http://www.mapleprimes.com/MapleImage.ashx?f=0e72a503d8cda67b04bca7adbdaff5ff.gif)
,t)=(1-x[1](t)^2)*x[2](t)-x[1](t)](http://www.mapleprimes.com/MapleImage.ashx?f=5b4d3d431e3e4c36827a50eaec034294.gif)
To be precise, I linearized...
Hey,
I have linearized the following system and I want to extract the linear matrices (a,b,c,d) form the solution. The program is as follows:
Hey,
I am trying to linearize a Statespace and extract the linear matrices from the solution. Using following example, can you explain how to extract the matrices a,b,c,d.