MaplePrimes Questions

What's wrong? 
Should I use for this function NLPSolve?

restart;
with(Optimization);
print(`output redirected...`); # input placeholder
  [ImportMPS, Interactive, LPSolve, LSSolve, Maximize, Minimize, NLPSolve,
    QPSolve]
My students were excited to see ODE demonstrations with Maple 13. Now they ask me if there are some online features (similar to those in Wolfram Alpha or Mathematica Live)

 

Dear team,

I am PhD scholar in UK (University of Birmingham coming from Pakistan)

I want to solve a matrix of 24*24 matrix for eigen values but fail to do it. please help me or give me suggestion to solve it by maple.

i am also sending u matrix written in Maple 12

may i know functions for which the computational cost of evaluating their first derivative is higher than the function it self.

I want to plot the following equation

theta0 = 10.00000000*(2.718281828-exp(1.000000000*S))/exp(1.000000000*S)

I want that theta0 should be my x-axis in the plot and S should be the y-axis in the plot.

Can any one help me out?

Thx

Hi

 

I've to solve a EDP with boundary conditions with Maple :

EDP := [diff(u(x,t),t) = -0.35 diff(u(x,t),x)];
IBC := {u(x,0)=f(x), u(0,t)=u(10,t)};

(f is an function dirac of amplitude = 1. 0<x<10)

Reconstruct an analytic function w(x,y)=u(x,y)+I v(x,y) from its real part u(x,y):

how to define the function in Maple.

I'm confused with the definition in Mma,look at this sample:

analyticReconstruct[v_, {x_, y_}, z_] :=
  2 I (v //. {x -> z/2, y -> z/(2 I)}) - I (v //. {x -> 0, y -> 0});

analyticReconstruct[{2 x y, E^x Sin[y]}]

{z^2, -1 + E^z}


 

 

Hello,

I have a matrix of 2x2. the elements for example can be [x, x^2; 3x, 10x]. The determinant must be zero. Numerically, how do I construct a loop that finds me the solution of x?

 

Thank you.

 

> D := 5;
Error, attempting to assign to `D` which is protected
 

Dear Maple Users

I am still pretty new to Maple. I know it is possible to plot a set of x-values against a corresponding set of y-values, like:

> plot([[0,3], [1,7], [5,14], [6,17]])

but how is it done more conveniently? I mean, if I want to import data from another program and I have copied the data from two columns to the clipboard, how do I plot the first column against the second?

Regards, Erik V.

 

I would like to try the polynomial fit curve to the data points that I get below.  The data is for melting temperatures vs bond energy. 

> with (Statistics):
> Temperatures := <801, 2800, 1410, 3551, -39, 660, 1538, 3410, -189, -101, -78, 0>:
> BondEnergy :=  <3.3, 5.2, 4.7, 7.4, .7, 3.4, 4.2, 8.8, 0.08, .32, .36, .52>:
>
> BondEnergyFit := Fit (a+b*t+c*t^2+d*t^3, Temperatures, BondEnergy, t)

 

Is there a way to find out what packages (i.e. statistics, or calculus, etc.) that are in my Maple installation? I bought a student version of Maple, now I need to use Statistics (with (Statistics): ) but don't really know If I have Statistics package installed or not. Thanks
Is there a way to find out what packages (i.e. statistics, or calculus, etc.) that are in my Maple installation? I bought a student version of Maple, now I need to use Statistics (with (Statistics): ) but don't really know If I have Statistics package installed or not. Thanks

I have tried to programme a bubble sort procedure below and i'm a bit stuck and not sure where i've gone wrong. Many thanks.

 bubblesort:=proc(C)
local n,o,r,k,i:
n:=rtable_dims(C):
o:=rhs(n):
r:=lhs(n):
for i from r to o - 1 do
if C[i] > C[i+1] then
(C[i], C[i+1] ) := (C[i+1], C[i]);
else
(C[i], C[i+1] ) := (C[i], C[i+1] );
fi:
od:
return(C);
end proc:

 C:=rtable(1..6,random(1..50));
bubblesort(C);

C:=[44 5 38 37 3 15]
[5 38 37 3 15 44]

First 2053 2054 2055 2056 2057 2058 2059 Last Page 2055 of 2434