MaplePrimes Questions

Greetings Everyone,

I was looking at the the BlackScholes application worksheet (just search for "black" in the help file), and it has a neat little Monte Carlo simulation block.  I was just wondering if there is anyway to view the underlying code that it's using so I could study it.  Does anyone know how to do this?

Thank for your help anyone.

Billy.

P.S.  I'm using Maple 14.

Hi all

I need to find the fourier coefiicients.  In the following Maple program I get the fourier transform of the signal which is fine, BUT actually I am interested in finding A0, An and Bn of the signal denoted by Plot(f(t),t=0..2*Pi);

step:= 2*Pi/2000;
   start_point1:=Pi/3+Pi/6;
   duration1:=Pi/3;
   start_point2:=4*Pi/3-Pi/6;
   duration2:=Pi/3;
   f:= t -> piecewise(t >= start_point1...

Hi
 How to translate the following lines of commands from Matlab to Maple?


n = 2^10;
M = zeros(n);

I = 1:n;
x = I-n/2;
y = n/2-I;
[X,Y] = meshgrid(x,y);
R = 10;
A = (X.^2 + Y.^2 <= R^2);
M(A) = 1;

imagesc(M)
colormap([0 0 0; 1 1 1])
axis image
title('{\bf Circular Aperture}')

Gracias

Hi all, 

I need help to run a MATLAB program in MAPLE and find the fourier series coefficients like a0, an, bn.........the matlab code is as follows:                ( to be honest i don't know what format to use in MAPLE for programming?)

clear

step=2*pi/2000;

theta=0:step:2*pi;

start_point1=pi/3+pi/6;

I know Maple has/had opensource ideas behind it, that's why

interface(verboseproc=3)

print(sum)

allows seing source code for function sum, but what if I want to see the source code for local procedures in Statistics module,

for example

print(Statistics[Distribution])

>proc() local T; try if type(args[1],':-ProbabilityDistribution') then if nargs=1 then return eval(args[1...

I am trying to translate the following Mathematica code into Maple, but am having a lot of difficulties finding the equivalent commands.  Could you please help?

Table[ Partition[ Take[ Flatten[ t ], {k, 3*Length[ t ], 3} ], cols ], {k, 1,3} ]

Note: t,k, and cols are all variables

I'm trying to create Skewed Normal distribution with the following PDF

 

sqrt(2)*exp(-(1/2)*(x-mu)^2/sigma^2)*(1/2+(1/2)*erf((1/2)*(alpha*x-mu)*sqrt(2)/sigma))/(sqrt(Pi)*sigma)

 

I'm using the following command for that (referenced from http://en.wikipedia.org/wiki/Skew_normal_distribution

Dear Maple users

I have been looking for the list of fonts used by Maple, but couldn't find it. Can someone refer me to it? I am installing lots of programs on a new computer, and since some of them are graphics programs, I get a load of fonts thrown in my Windows Font folder. Therefore it is my intention to remove a lot of the unnecessary fonts. But I don't want to remove the ones used my Maple, so I will...

Dear all, 

I'm using the maple command in MacOS. While doing some computations, Maple periodically prints out the GC information such as:

memory used=444.9MB, alloc=184.7MB, time=7.75

I'm wondering how to tell Maple to only suppress those information? I also noticed that maple has an option -q to suppress such information, however, that option is too powerful which suppress other useful pretty printings too, which is not what i want.

Thanks,

 

hi, in following commands what is wrong :

s define before. i sure it's error related to dsolve. i want to have f[i](x):= dsolve({s[ii], ics[ii]})

for ii from 1 to 6 do ;
ics[ii]:=f[ii](0)=0,D(f[ii])(0)=0,D(f[ii])(10)=0;
ans := dsolve({s[ii], ics[ii]}) ;
 f[ii](x):=ans
od:

 

thanks

hi

i want to write these commands in maple but i dont khnow how to wirte :

do i=1,10

ans = i*2

f(i)=ans

end do

 

above code written in fortran patern and i want maple patern. for example i try these command but it doesnt work.

for ii from 1 to 10
 do ii*2
 f[ii](x):=%
end do

I'm looking for an older worksheet called something like 'Basic Jet Engine Model' originally created for Maple V. 

Does anyone recall such a worksheet?

Hello.

After using many versions of TA over many years on our own servers, we are considering paying for Maplesoft to host TA. Can anyone offer any experience of using TA hosted on Maplesoft servers? We can think of many good reasons to change but are there any downsides? Is remoteness a problem, speed of access? We have a fairly typical university central computing service dept.

I understand that the way the hosting system works is that more than one server...

Dear All,

 

I have a question related to Modulated Markov Rate Process (MMRP). Please see MMRP and here. For more information see this

In this kind of markov chain it is necessary to have ON and OFF state that separte by a exponential distribution. Also the number of items as mentioned in the figures has a...

Hi all,

 I am trying to solve a system of pde's to get an analytical solution in maple. here's the system:

pde1:=diff(Ti(r,t),t)=(1/r)*diff(r*diff(Ti(r,t),r),r);

bc1:=Ti(r,0)=1,D1(Ti)(0,t)=0,D1(Ti)(1,t)=D1(To)(1,t);

pde2:=diff(To(r,t),t)=(1/r)*diff(r*diff(To(r,t),r),r);

bc2:=To(r,0)=0,D1(To)(1,t)=D1(Ti)(1,t),D1(To)(1.5,t)=0;

sys:=[pde1,pde2,bc1,bc2];

sol:=pdsolve(pde);

Error, (in pdsolve/sys) the input system...

First 1845 1846 1847 1848 1849 1850 1851 Last Page 1847 of 2430