Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

How to Plotting Matrix  8 × 8 matrix:

0, 0, 0, 0, 0, 0, 0, 0
0, 1, 1, 1, 1, 1, 1, 0
0, 1, 0, 0, 0, 0, 1, 0
0, 1, 0, 1, 1, 0, 1, 0
0, 1, 0, 0, 0, 0, 1, 0
0, 1, 0, 0, 0, 0, 1, 0
0, 1, 1, 1, 1, 1, 1, 0
0, 0, 0, 0, 0, 0, 0, 0

This matrix would correspond to the following image where 0=black and 1=white.

Gracias

How to output a list when writing a procedure

i want to get the list c in the procedure, but "return" c not work

z := [x1, x2, x3];
symMonomial(z)

symMonomial := proc(test)
with(combinat):
h := 0;
for i from 1 to nops(test) do
    h[i] := choose(z,i);
od;

c := 0;
for k from 1 to nops(test) do
    c[k] := 0;
    for i from 1 to nops(h[k]) do
        ki := 1;

I start with a question, but not an how-to question, because I am puzzled by why such a routine is missing.

Why does Maple not have  generalized Schur (real and complex) factorizations with reordering?  The nice solution of many dynamic equations requires this factorization because the lhs is singular. MatLab does have such a routine. At the moment, it seems, one has to have accessible and connect to MatLab or NAG or LAPACK for such routines.

Is this...

Using the following script with cmaple I got a plot with three legend elements. (see img link). 

How can I remove Curve 3 and Curve 5 entries?

with(plots):
plotsetup(gif,plotoutput=`test_maple.gif`,plotoptions=`color,noborder,portrait`):

l:=10^(-3);
Vel:=(y,t)->sum(n*y*t, n = 0 .. 10);

Vel1 := plot(...

I am trying to learn how to use Maple by working simple-minded projective geometry problems. I want to define a line in terms of two points, one of which is an intersection of two other lines. Must I define the intersection before using it as an argument, or is there a way to refer to the intersection without bothering to name it, as one might do in OOP by creating an anonymous object to use as an argument of the intersection procedure?

I want to show algebraically that the expected correlation is
decreasing in the tails of the distribution ie that the correlation coefficient
breaksdown when we have large moves. How can this be done?

Here is a standard example of how dcoeffs works:

> with(PDEtools);
> X := a*(diff(y(x), x, x))^2+b*(diff(y(x), x, x))+c*(diff(y(x), x));
                             2                     ...

for example:
i want to know how many numbers generated in this loops

 

[seq([seq(i, j = i .. 5)], i = 1 .. 5)]

[1, 1, 1, 1, 1], [2, 2, 2, 2], [3, 3, 3], [4, 4], [5];

 

as if there is no way that can make a "++" increment operator in maple 12

please give me advise how can i find some text fragment in Math 2D mode?

It may be of interest to this community that the original Maple Project at the University of Waterloo was awarded the ACM SIGSAM Richard Dimick Jenks Memorial Prize in June, at the joint ISSAC/SNC 2011 conference (overlap with FCRC 2011).

See here for the announcement.

I have a very simply equations 

eqs := {2.32 = a+b, pa = .4310344828*a, pb = .4310344828*b, pa+pb = 1}

pa is the persnet of a in the whole a+b

maple auto simplify pa = a / 2.32 to that.

 

I call the solve(eqs) and get the NULL return. that mean there is no solution for this eqs

but that's not true

even I do this

solve(eqs union {a=1})

it also return NULL

hi guys,

i need to solve s system pf three PDES numerically and ended up with "in pdsolve/numeric/process_PDEs) all dependent variables in PDE must have dependencies esplicitly delclared". Can anyone gives me a hint to fix it (worksheet is attached).

Thanks

=

I have to make following substitutions in a ODE:

alpha = x - 2

y(alpha) =  y(x) - 1

 

[Maple code starts]

The ode is 

ODE := diff(y(x), x) = (y(x)+1)/(x+2)-exp((y(x)+1)/(x+2));

 

I have used the following commands:

Rhsa := eval(rhs(ODE), {x = alpha-2, y(x) = y(alpha)-1});
lhsa:=subs({x = alpha, y(x) = y(alpha)}, lhs(ODE));

 

Sub_ODE:=lhsa = Rhsa;

Hi:


I am trying to save plots to files in the batch mode (or when running maple from the terminal). The simple code below works fine from the gui interface, but when executed from the terminal, the fonts are not adjusted. I have tried exporting to other formats as well (eps, jpeg). Any ideas how to get around it?? It is problematic for me because I need to produce density plots with large data sets. Ideally I would like to export in the eps format, but these large...

Hi there,

1) I have imported my excel file using Tools>assistant>import data.

2) My excel file contains close to 35 columns.

3) Now, within Maple, I want to plot say Column B (Time) against Column C (Temperature) of the imported excel file. 

4) Also, in addition, once I can plot two columns against each other, How can I include other columns in the same plot.

Any nudge in the positive direction will be appreciated.

Thank you.

First 1672 1673 1674 1675 1676 1677 1678 Last Page 1674 of 2219