代码搜索:montecarlo
找到约 154 项符合「montecarlo」的源代码
代码结果 154
www.eeworm.com/read/423100/10587588
asv montecarlo.asv
%simulation chain
% This is simulation for the OFDM system.
% ------- simulation1.m ------------------------------------
% Black team
% April-08-05
% ------------------------------------------------
www.eeworm.com/read/423100/10587701
m montecarlo.m
%simulation chain
% This is simulation for the OFDM system.
% ------- simulation1.m ------------------------------------
% Black team
% April-08-05
% ------------------------------------------------
www.eeworm.com/read/423001/10594081
asv montecarlo.asv
clc;
randn('seed',0);
var=10;
N=10;
M=1000;
T=zeros(M,1);
for i=1:M
x=sqrt(var)*randn(N,1);
T(i)=mean(x);
end
ngam=100;
gammamin=min(T);
gammamax=max(T);
gamdel=(gammamax-gammamin
www.eeworm.com/read/137308/7071839
cpp montecarlo.cpp
#include
#include
#include
#include
#include"interface.h"
unsigned long int I(char *s)//返回字符串的编码
{
int len = strlen(s);
unsigned long int result = 0
www.eeworm.com/read/394305/7144500
h montecarlo.h
#include"primer.h"
//////////////////////////////////////////////////
//求字符串的指纹
string lp(string str,int p)
{
int length=str.size();
int sum=0;
for(int i=0;i
www.eeworm.com/read/445056/7599884
m montecarlo.m
function root = Montecarlo(f,B,x0,eps)
format long;
if(nargin==3)
eps=1.0e-4;
end
Fx = subs(sym(f),findsym(sym(f)),x0);
while abs(Fx)>eps
Fx = subs(sym(f),findsym(sym(f)),x0);
Fx
www.eeworm.com/read/442419/7653110
m montecarlo.m
clear all;
close all;
%% Starting parameters
tic;
nActifs = 2;
CorrelationMatrix = [1 0.9;0.9 1];
Vols = [0.5 0.9];
DivYelds = [0 0];
StartValues = [100 100];
ExpCovariance = corr2cov(Vol
www.eeworm.com/read/439700/7702701
m montecarlo.m
function root = Montecarlo(f,B,x0,eps)
format long;
if(nargin==3)
eps=1.0e-4;
end
Fx = subs(sym(f),findsym(sym(f)),x0);
while abs(Fx)>eps
Fx = subs(sym(f),findsym(sym(f)),x0);
Fx
www.eeworm.com/read/433829/7907327
m montecarlo.m
function root = Montecarlo(f,B,x0,eps)
format long;
if(nargin==3)
eps=1.0e-4;
end
Fx = subs(sym(f),findsym(sym(f)),x0);
while abs(Fx)>eps
Fx = subs(sym(f),findsym(sym(f)),x0);
Fx
www.eeworm.com/read/197258/8008969
m montecarlo.m
% montecarlo.m
%
% This program is a Monte Carlo computer simulation that was
% used to generate Figure 2.10a.
%
% Set seed of random number generator to initial value.
randn('seed',0);
% Set