Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi,

I am a new user of Maple. I need help in defining the Sxx and Syy in terms of differential terms of P and Q in the following program. I have attached the worksheet with this mail.

Thanks a lot for your tips.

Thanks,

RPD

 

 

E.g. how do I say "x conditional on w" in Maple. The following doesn't evaluate:

x|w

Error, unable to match delimiters

or:

mu[x|w]=sum(v[i],i=1..n)*f(v[i]|w);

Error, `|` unexpected

Thanks

 

 

alpha := vector([cos(theta), sin(theta), sin(k*theta)]);

alpha1 := map(diff, alpha, theta);
alpha11 := map(diff, alpha1, theta);

with(linalg):
cr := multiply(alpha1, alpha11)/simplify(multiply(alpha1, alpha1));

F := vector([0, 0, -m*g]);
c := multiply(F, alpha1/simplify(multiply(alpha1, alpha1)))/m;

motion := diff(f(theta), theta$2) + cr*diff(f(theta), theta)^2 = c;

pdsolve and dsolve not work, how to solve above motion equation with maple?

Hello,

Is there a way to make Maple display the line where an error has been detected ?

Regards,

RedVivi

hi.

this is my procedure, i think its obvious what its supposed to do, but it doesnt.

 

#plot p to file filename with size width cm x height cm

> makeeps := proc(p, filename, width, height);

>   plotsetup(eps, plotoutput=filename,  

>   plotoptions="portrait,noborder,color,leftmargin=0,bottommargin=0,width="||width||"cm,height="||height||"cm");

>   display(p);

>   plotsetup(default); 

I am trying to solve a piecewise differential equation of the following form:

FOI := diff(r(x), x) = piecewise(r(x) < 0, 1, r(x) > 0, 0)
dsolve({FOI, r(0) = -1})

but MAPLE returns an error stating

Error, (in dsolve) when calling '`property/ConvertProperty`'. Received: 'real is an invalid property'

I do not know what to make of this. I have tried playing around with assumptions...

Hello,

I have some difficulties to create an X-Y chart and what data structure I should use.

I have a loop, I set the maximum number of iteration to nmax.

At the end of each iteration, I will retrieve two information (variables):

-iteration number, 1 by 1 until nmax, integer: n
-an value associated with this iteration, integer: v

I will store iteratively these values (at least v) at the end of each loop...

Hello all

May I please ask a question about colors? I have multiple plot structures, created using

plot1:=odeplot(...)

plot2:=odeplot(...)

I do not wish to specify a color for each.

When I display them all together

Display(plot1,plot2,..)

they (understandably, I guess) all show up with the same color (all having been created separately).

Is there any way to get the Display (or other) command to (realize it's drawing...

Here is the sort of data I want to plot:

plot([seq([i,i],i=1..10),seq([i,1/i],i=1..10)],style=point);

The above works (Maple 14, Windows 7, Standard GUI). but I'd like to use different scales on the left- and right-hand sides, e.g. raise the second plot by a factor of 10.

I thought dualaxisplot would be the ticket, but I haven't been able to make it to work. It may have to do with the fact that my data is a list of coordinates rather than a function ...

My next project will be to understand second order cone optimization
and submit an easy to understand example to the maple application
center inorder to help other people understand it as well. Due to the
extreme technical nature of the problem I have offered various "experts"
up to 500 USD if they can explain it to me in simple terms.

Most optimization people have told me: We want $$$$$$$$ to explain it to you.
Apparently, everyone ells should share their knowledge to the world

Hello,

I’m just toying around with diff(), dsolve(), and, as it happens, also with pdsolve(). Let’s say I have an equation as the following:

DF := (diff(f(x, y, t), `$`(x, 2)))*omega+(diff(f(x, y, t), `$`(y, 2)))^2+diff(f(x(t), y(t), t), t) = 5;

A function f, depending on x, y and t where x and y also depend on t. I multiply the second partial derivative of f by x with ω, add it to the square of the second partial derivative of f by...

Hello,

I don't understand what's going on with Maple. Here is a simple code to test a difference between 2 values from an imported file (Array).

If the number of loops (for n to 6, line 7) is set over 8, I get EACH TIME a "Kernel Connection Lost". I don't understand why Maple fails on this simple code.

Is it a bug or something is wrong with this code ?

I attached also the matrix dataset (Import Data -> Excel file -> variable name "data")

Hi,

I have created procedures to encode and decode messages using the RSA method. Although that this method requires a private key, which is only known by me, the message is not uniquely from me.

I was wondering if anyone had any ideas about how I could create some sort of signature so the message was only from me.

BodeHi there,

can anybody tell me why this code works..

restart: with(DynamicSystems): alias(delta = Dirac): alias(sigma = Heaviside): interface(imaginaryunit = j):
DGL := 2*(diff(x(t), t))+10*x(t) = 5*y(t):
sys1:=DiffEquation(DGL, inputvariable=[y(t)], outputvariable=[x(t)]):
BodePlot(sys1, thickness = 2);

and this code doesnt'

restart: with(DynamicSystems): alias(delta = Dirac): alias(sigma = Heaviside...

I am using the code generation package to generate fortran 90 code.   In a Maple module I have a procedure that uses "CodeGeneration[Fortran]" to turn a symbolic matrix into a subroutine in Fortran; i.e., given an n-vector q the Fortran subroutine will return an n by n matrix.  However, since Maple's "Fortran" command does not support Fortran 90 I have utilized the StringTools[RegSubs] to alter the line continuation differences between fortran 77 and fortran...

First 1738 1739 1740 1741 1742 1743 1744 Last Page 1740 of 2223