MaplePrimes Questions

what is the command to change transfer matrix to state space?

When I enter the Greek Capital letter "Xi" (looking like three uneven horizontal lines) it comes up fine on screen but in print preview there is a space?  Lower case "xi" is fine.  Same thing happens in both Maple 14 and 15.

Hi everyone,

Is there a way that Maple can return a list of variables in a function? For example, if I have something like:
f:=(x,y)->x^2+y^2;
I would like Maple to return:
{x,y}

I found the indets command, but it does not seem to work for functions. For example:
f:=x^2+y^2; indets(f);  returns {x,y} but     f:=(x,y)->x^2+y^2; indets(f);    returns {f}

Any help would be appreciated.

I am looking for an way to do clifford and geometric algebra calculations with Maple.

Robert Israel helped me to plot  F2 vs k 

http://www.mapleprimes.com/questions/120380-Explicate-Plotting

I tried to modify his code to get reults for F2 vs S from equation A1, but i am still facing problems with it

The maple code is

restart:with(MultiSeries):with(plots):

parvalues:={C=2.02,H_liq=8.74,R=22.11,R1=0.0006};...

Hi,

 

I encountered the following problem in Maple 14

expr1:=sqrt(a)

assume(a>0)

expr2:=sqrt(a)

additionally(a>1)

subs(a=2,expr1) #gives correct answer of sqrt(2)

subs(a=2,expr2) #does not substitute a=2 in expr2

It seems the last statement with expr2 does not work as expected, I wondered why this behaviour is so, because it does work with expr1. The added assumption does not invalidate the first...

 

Hi guys,

I am a first time user of Maple. I have a very easy question to ask you people since I am not that great in programming.

Below is a system that I want to evaluate. I just want to know how can I find out expressions of w1 and w2 in terms of u1 and u2 only i.e. w1=f(u1,u2) and w2=f(u1,u2). I don't want other variables like delta or E in expressions of w.

Thank you.

 

Hi,

where can I look up, how Maple calculate the function MathieuExponent. By how I mean, which algorithm is used by Maple and how is it implemented,

Thanks

restart:with(MultiSeries):with(plots):

parvalues:={C=2.02,H_liq=8.74,R=22.11,R1=0.0006};

G:=R3*k*(1-R1)/(C*Pec_i);

F1:=1/(R*S+1-S);

F:=F1*(1-R*G*S);

F2:=Pec_i*F;

A1:=Theta0/C=(exp(F2*(1-S))-1)*(H_liq+1/(1-exp(-C/k*F2*(S))));

R3values:= [0,-1,-3,-4]; colours:= [red,blue,green,black]; display([seq(plottools[transform]( unapply([k, subs(parvalues, Pec_i = -20, R3=R3values[i], F2)], (k,S))) (implicitplot(subs(parvalues,Theta0=4,R3=R3values[i...

Hi,

I need to solve the following system of equations:

eq1 := (vi-vg)/Z0 - (vg-vs)/Z1-(vg-vd)/Z2;

eq2 := vs - [(vg-vs)/Z1 + gm*(vg-vs) + (vd-vs)/r0]*Z3;

eq3 := (vg-vd)/Z2 - gm*(vg-vs) - (vd-vs)/r0 -vd/Z4;

I am expecting the solutions for vg, vs, vd, so the following command was used:

solve({eq1,eq2,eq3},{vg,vs,vd});

but it kept giving me the warning message of: 

so...here it is that equation:

du/dt   = d2u/dr2 +  du/r*dr  +  u  +  f(r,t);     r=(0,...,2]; t(0,...,1]

also we have conditions:

u(r,0)=0;

 

u(0,t)=t2;

u(2,t)=0

 

I need to find u(r,t) and to graph it

r and t are cylindric coordinates.

 

f(r,t) is some definite function.

Hey all,

My question is better explained with an example

the algorithm I have here creates a matrix M[j] for each run of j.

I want to be able to export each of these matrices to a different spreadsheet and if possible, set up a naming critiria for each spreadsheet(so that I dont have to enter a name in the dialog box after each run)

Any suggestion will be really appreciated. Thanks

Lovinash

 

here's the example:

How can I create a vector using a step index, for example, using the function output f:=1/i+1 and alternate it with a zero

 that produces a vector such as,  0,1/2,0,1/3,0,1/4,0,1/5.....?

Every attempt I tried failed.

 

How can I manipulate the scale of dominion?

 

As you can observe with the graphic can not be examined.

Gracias

Hi everyone,

I have a 2nd order system which I want to solve. But the solver outputs no results after evaluation, just returns to the prompt. Do you know what I am doing wrong?

deq1:=diff(x[1](t),t$2)=k[1]/abs(x[2](t)-x[1](t))^2;
deq2:=diff(x[2](t),t$2)=k[2]/abs(x[2](t)-x[1](t))^2;
sys_ode:=deq1,deq2;
ICS:=x[1](0)=5, x[2](0)=10, D(x[1])(0)=0.1,D(x[2])(0)=0.2;
dsolve({sys_ode, ICS});

thanks.

First 1862 1863 1864 1865 1866 1867 1868 Last Page 1864 of 2430