Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi

I am trying to run the following sample code

http://www.maplesoft.com/support/help/Maple/view.aspx?path=OpenMaple/Java/Examples

 

but I get error msg

fatal error(-1) loading GMP library: C:\Programme\Maple 12\java\bin.win\libgmp-3.dll

 

"Error Lauching openmaple splash screen"

 

the file "libgmp-3.dll" is in the correct directory

 

I am using Maple 12, jdk 1.6.0_23 and WinXP

First a little background: I am using Maple 14 on a Windows 64 bit machine.

I first imported some x,y data using the readdata function. Then I made a Spline function from this data like so: f :=x->Spline(data,x);

Then I created a second function, lets call it g(z) which calls f like so: g:=z->f(1/z);

If I simply try to evaluate g(z) at a point it works. But if I try to plot g(z), like so: plot(g(z), z=5..7) I get the error: Error, (in CurveFitting:-Spline...

Question: (how to do this)

Write a procedure that takes as input a lowercase text string and returns a list 26 integers.
the fist entry is a count of the number of letter 'a's,the second the number of lette 'b's ,.... , the 26th the numberof letter 'z'.


Thank you 

dear all,

          i have a simple optimization problem. the objective function is like A*X + B = E and the constraints are 100 <E < 8000 and 10<X<600. I want to find the Min and Max ranges of A and B such that Amin*Xmin+Bmin=Emin and analogous for maximum. I am not sure about the correctness of my modeling. Please guide me to proceed. Thanks.

I would like to ask, whether MAPLE can compute expressions written in covariant notation, like these ones (I have written it in LATEX): $u^{\mu \alpha}_{\nu} u_{\mu} u^{\nu} v_{\alpha}$, (where $\mu, \nu, \alpha = 0,...3$), i.e. whether we can compute the summation (like in these above examples), contraction, substitute ansatzes for $u$, compute derivatives of this above expressions, etc. I looked for any information in documentation, but I did not found anything. I checked,...

Hyperlinks ars restricted to URL, Mail, Maple, etc. For Windows I would like to see a new type called Double Click.

The location and file name would be entered. Executing this Hyperlink would be just like double clicking the file in Windows. The file could be anything as long as the underlying software is installed on the computer.

The file could be video, mp3, image, etc. This would have no restrictions.

It would help to make Maple even more multimedia.

Hello, so while I am toying with Maple and some excersizes, I have realized my skills aren't what I thought they were from when I last used Maple 8. I swear the program gets smarter and returns more errors now that I cannot properly define some functions.

For example, I have attempted to plot the vector function r(t)=<cos(t), sin(t), exp(sin(t))>. Required, in the same plot region, same graph, is to plot A) the function r(t), B) the derivative r'(t) AND the C...

I have a more relavant form of a question regarding procedures. I need to write a procedure with parameter f(x) and result in the plot of the function f(x) along with the plot of the curvature of f on the same graph. Ideally, parameter f(x) could be requested to be any function, such as x^2 or cos(x). I am new to procedures and do now know where to begin, even at such a basic level.

Any assistance greatly appreciated.

I am using Maple 14 and struggling with writing procedures. Here is an example of what I need to be able to program. I require a procedure which will receive as a parameter a function f(x) and plot that function (say in red) along with the curvature function (say in blue) on the same graph. Sample parameters include the functions f(x)=x^2 or sin(x) or exp(-x^2).

I feel somewhat confident in my maple commands, but procedures are a whole new thing to me. If even a basic...

Hi,

I have those questions:

1) set

When I write these inputs,

x:={1,3,2}; y:={b,a,d,c}; z:={a[1],a[1,1],b[0],d[0],c[0],a[0],2};

the results are x := {1, 2, 3}, y := {a, b, c, d}, z := {2, a[0], a[1], a[1,1], b[0], c[0], d[0]}

Is there a way to get what I input

2) This problem in ordering numbers and words is verry important and hard when solving a large system of equations with:

restart:with(SolveTools): eqns:=[a[0...

The following simple procedure: 
SubsColumn: = proc (A, V, k) 
local B, m; 
with (LinearAlgebra); 
m: = ColumnDimension (A); 
B: = <A[..,1..m]|V>; 
B: = ColumnOperation (B, [k, m +1]); 
B: = DeleteColumn (B, m +1); 
B; 
end proc; 

solve the problem of...

I just got a smartphone, amazing. Wouldn't it be wonderful to have a mapleprimes app to conveniently view and post messages from a smartphone or a smartpad or whatever? Any plans to set one up? (I'm on the android platform)

The other suggestion/question I have is: any plans (by Maple or others) to make a Maple calculator widget? I'm currently using RealCalc, which is great, but it  doesn't have the advanced term-grouping capabilities of the Maple calculator.

What can be said about this divergent series:

 sum((cos(m)+I*sin(m))*(cosh(w)+sinh(w)),n=1 ..infinity) where m=Pi*n and w = ln(n)/n?

Calculate

int(cos(100*(x^4-x)), x = -infinity .. infinity)

with the relative error less than  10 percentages.

Hello,

I use 'SystemConnect' command to connect two transfer function, as the following codes illustrated.

with(DynamicSystems);
sys1 := TransferFunction(10/(s*(s+10)));
sys2 := TransferFunction(k*s^2/(s+20));
Warning, improper transfer-function, degree(num) > degree(den)
sys3 := SystemConnect(sys1, sys2, connection = negativefeedback, outputtype = tf);
Error, (in unknown) cannot convert improper transfer function to state-space model

First 1734 1735 1736 1737 1738 1739 1740 Last Page 1736 of 2223