You might wanna look at the answers under this query: How do I translate code from Maple to MATLAB? - (mathworks.com)
convert maple code into matlab
2 次查看(过去 30 天)
显示 更早的评论
tau:=x->x^2+1;
plot(tau,0..1,discont=true);
N:=100000:# iterations
Digits:=50:
Nb:=200:#Number of boxes
M:=array(1..Nb):
for i from 1 to Nb do
M[i]:=0;od:
x0:=0:x1:=1:
ix:=x->min(floor(Nb*(x-x0)/(x1-x0))+1,Nb);
x:= x0+(x1-x0)*evalf(rand()/10^(12));# random initial point
for i from 1 to N do
x:=evalf(tau(x)) ;
if (x<x0 or x>x1) then x:=x0+(x1-x0)*evalf(rand()/10^(12));
fi;
k:=min(floor(Nb*(x-x0)/(x1-x0))+1,Nb):
M[k]:=M[k]+1:
od:
fM:=x->M[ix(x)];
plot(fM,x0..x1);
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!