Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi,

I got a worksheed with some dualaxisplots generated in a loop. As it would take some time to rightclick on each of them and export it as eps, I'm searching for a fine solution to automatically export them. For plot(); and display(); I found some nice solutions, but using dualaxisplot, I receive the following error:

Error, (in plots:-dualaxisplot) dual-axis plots are not available for the current interface or device

This...

A simple question. I have this:

k*(2x+y-3z+2)+s*(5x+5y-4z+3)=0

 

And I want to group it by x, y, z, so that I would get:

x*(2k+5s)+y(k+5s)...=0

 

I'm using Maple 11.


Hey, I'm just starting to work with maple and I have no idea how i could restract a,b,c,d,e,f,g,h,i in a 3x3 matrix

problem := ur+dr, {con1, con4, con5}, seq(w[i] = 0 .. 1, i = 1 .. N):
problem_matrix_form := Optimization:-Convert:-AlgebraicForm:-LPToMatrix(problem):

Optimization:-LPSolve(problem, maximize = true);
Optimization:-LPSolve(problem_matrix_form[2 .. 4], maximize = true);



The above trick-conversion method works for all LP and QP problems
However it does not work on NLP problems. I have attached the workshet

Hello!

I'm studying Computational Mechanic at the Technical University in Munich. Would you please be so kind and help solving this. During my study I'm encountered with Dimensionless Analysis which I do with Buckingham Pi-Theorem. There I have to set up a matrix, each of the colums get a name wich refers to a certain physical quantity. When you are applying the Buckinham Theorem, in most case you are dealing with a rank defiecient matrix. so many of the columns of my...

A recent Tips and Techniques article in the Maple Reporter contained the following five "gems" from my Red Book of Maple Magic. These 'gems' are tricks and techniques for Maple that I've discovered in my years here at Maplesoft. The previous 15 gems have appeared in three other issues of the Reporter, as...

I want to ask a question about parallel programming capability of Maple (for Maple15). I have a 4-core PC (intel i7 processor) running under Windows-7(64-bits). I'm making a monte carlo simulation by using maple15. The simulation is very complicated such that it includes loops and inside these loops we use Newton-raphson method (a numerical algorithm). Because of being complicated iterative calculations, one simulation needs approximately 50 hours to be completed. And this...

I have a 3rd order nonlinear recurrence relation and I would like to produce the associated sequence.

Here is the relation x[n+2]:=(((x[n+1]*x[n])^2+x[n]^2+x[n+1]^3))/x[n-1]. At the moment the method I am using (a standard do command) is very computationally heavy when I want lots of iterates. I was wondering if there were faster loops, or procs.

Also I would like some kind of way to check if all the terms are integers, maybe some kind of summation where an...

index.mw

Higher Mathematics for external students of  biological faculty.
Solver-practicum.
1st semester.
300 problems (15 labs in 20 variants).
mw.zip

Before use - Shake!
(Click on the button and activate the program and Maplet).

Can Maple 13 solve nonlinear algebraic equations system numerically without using fsolve? for example Gauss siedel iterative method .

Projektet...mw

And indeed it has, 3/4th of my document is gone. What to do? Is there any way to fix this?

consider f=f(z)

whereby z=Complex(x,y)

how do you find diff(f(z),z)?

thanks in advance

I have the following setup of springs and dampeners:

which gives me the following ode system

Why do I get this error message:


X := proc (a, b) local w, V, i, E, s; global Nr, sampvar, u;

w := sampvar*(1-a-b);     V[2] := u[1]^2;

if w = 0 then w := 0.1e-4 end if;

for i from 3 to Nr-1 do V[i] := w+a*u[i-1]^2+b*V[i-1] end do;

for i from 2 to Nr-1 do E[i] := -(1/2)*ln(V[i]^2)-u[i]^2/V[i] end do;

s[1] := 0;   for i from 2 to Nr-1 do s[i] := s[i-1]+E[i] end do;

s[Nr-1]

end proc:

I wrote a procedure that solves a volterra integral equation numerically. This procedure  takes N , number of radial basis functions, as parameter  .the problem is:Error,  bad index into Matrix

How can I fix this problem?

here is my procedure:



First 1627 1628 1629 1630 1631 1632 1633 Last Page 1629 of 2224