Monte Carlo methods are stochastic (probabilistic) systems that use many random samples to derive properties of a complex system.

learn more… | top users | synonyms

0
votes
0answers
11 views

Garchpred with Monte Carlo simulation in Matlab

I am trying to predict the values for a time series using garchpred on a time horizon of 4 periods. At each step I have to also add an estimated residual. The simulation is repeated 50000 times. Here ...
0
votes
1answer
41 views

coda package: why does effectiveSize(rep(1234567,10000)) fail? [closed]

I managed to trace back an error I was getting with an R function to the following simple example: effectiveSize(rep(1234567,10000)) Error in if (order) coefs[order, seq_len(order)] else numeric() ...
0
votes
2answers
43 views

Monte Carlo simulation with condition loop in MATLAB

I am a physicist. I have written a code on Monte Carlo simulation with condition loop. I am getting some error in running this simulation code. I want to consider the positive value of the ...
-1
votes
0answers
34 views

Monte Carlo to solve a linear matrix equation [closed]

as I've said, I need to find x, in say, Ax=b, where A is not a square matrix by using the monte carlo method in matlab, I've seen in the web some methods to calculate e.g. the pi number via ...
-2
votes
0answers
53 views

Project ideas for upcoming CUDA class…Monte Carlo Simulation Maybe? [closed]

I'm going to be starting a class on Parallel Systems ( Cuda ) programming soon. My background is in Finance & I'm thinking that a Monte Carlo stock market return projection program might be a ...
0
votes
2answers
85 views

not random enough for monte carlo

I am trying to generate values from a normal distribution using a monte carlo method, as per the website http://math60082.blogspot.ca/2013/03/c-coding-random-numbers-and-monte-carlo.html I modified ...
1
vote
2answers
59 views

Differences between Monte-Carlo and Markov Chains techniques?

I want to develop RISK board game which will include an AI for computer players. Moreoveor, i read two articles about it and realized that i must learn about Monte Carlo Simulation and Markov Chains ...
0
votes
2answers
61 views

Using Monte Carlo method to find a specific probability of a certain dice output in Python 3.2

I'm in a statistics class and we are constantly being given "dice problems" with various constrains. This is a probability problem, where I need to evaluate the probability of an event by using the ...
0
votes
1answer
42 views

Numerical integration of a discontinuous function in multiple dimensions

I have a function f(x) = 1/(x + a+ b*I*sign(x)) and I want to calculate the integral of dx dy dz f(x) f(y) f(z) f(x+y+z) f(x-y - z) over the entire R^3 (b>0 and a,- b are of order unity). This is ...
0
votes
3answers
97 views

Code for Monte Carlo simulation: generate samples of given size in R

I started by generating a sample of 500 uniformly-distributed random numbers between 0 and 1 using the code below: set.seed(1234) X<-runif(500, min=0, max=1) Now, I need to write a psuedocode ...
0
votes
2answers
67 views

Can't fix errors in monte carlo program

I'm trying to write a program that simulates darts being thrown at a standard curve. Whenever I get close to debugging the entire thing something else pops up. So far I am getting a lot of "'error: ...
-1
votes
0answers
21 views

Monte Carlo Tree Search : Expansion Step [migrated]

The algorithm asks to "Start at root node, recursively select optimal child nodes until a leaf node L is reached.", and then "If L is a not a terminal node (i.e. it does not end the game) then create ...
1
vote
1answer
73 views

What to Do when Monte Carlo Tree Search Hits Memory Limit

I have taken interest into monte carlo tree search applied in games recently. I have read several papers, but i use "Monte-Carlo Tree Search" A Phd thesis by Chaslot, G as i find it more easy to ...
0
votes
0answers
66 views

Monte Carlo integration in a function

So, my professor posed this problem to us: He wants us to use Monte Carlo integration to find the integral in the area under a curve of an arbitrary function. He told me it works the same way as Monte ...
1
vote
1answer
91 views

Making a custom probability distribution to draw random samples from in SciPy

I'm looking to sum up an arbitrary number of probabilistic distributions of things using a montecarlo type simulation. I'd like to randomly sample continuous distributions of something and add them to ...
2
votes
1answer
167 views

Bakeoff Part 1 Python vs Cython vs Cython Typed memory views: LDA by Gibbs Sampling

Update: Memory Views wins. Cython using typed memoryviews : 0.0253449 Special thanks to lothario who pointed out several critical changes. Ridiculous. Of course now the issue is , cant seem to do ...
1
vote
2answers
128 views

Python Uniform distribution of points on 4 dimensional sphere

I need a uniform distribution of points on a 4 dimensional sphere. I know this is not as trivial as picking 3 angles and using polar coordinates. In 3 dimensions I use from random import random ...
4
votes
2answers
187 views

Different Results of Monte Carlo Integration Due To Output

I've just recently stumbled upon a C++ bug/feature, that I can't fully understand and was hoping someone with a better knowledge of C++ here could point me in the right direction. Below you will find ...
0
votes
1answer
32 views

Fast choosing of bits from a set

I'd like to choose a number of random bits from a known bitmask. Ideally I'd like to choose those bits in a random order too, but the task can be split into choosing and shuffling later. Some ...
0
votes
1answer
105 views

Invalid conversion of int to unsigned int

This code is given for the assignment. However, off the bat there is an error in the compute pi monte carlo function. the error stats invalid of conversion from int to unsigned int. Im not sure if ...
-4
votes
1answer
156 views

Heston Simulation Monte Carlo: Slow R code [duplicate]

I need to simulate the stock price, that follows stochastic volatility process (Heston Model). I already asked, how to speed up my loops, but for this case I´m not able to use some tips due to the ...
1
vote
1answer
249 views

Stock Price Simulation R code - Slow - Monte Carlo

I need to perform a stock price simulation using R code. The problem is that the code is a little bit slow. Basically I need to simulate the stock price for each time step (daily) and store it in a ...
0
votes
2answers
112 views

Monte Carlo Optimization with CUDA

I am dealing with some slowness issues regarding my Monte Carlo simulation that I have developed in CUDA. I have observed very poor performances with my GTX 680 (compute capability 3.0) and I don’t ...
0
votes
2answers
61 views

CUDA and Monte Carlo with local behavior defined

I have a question about a strange behavior In CUDA. I am currently developing a Monte Carlo simulation on particles trajectories and I am doing the following the thing. The position p(n) of my ...
3
votes
2answers
239 views

How to parallelize monte carlo estimation of pi using pthreads?

#include <math.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> int main(int argc, char **argv) { unsigned long long in = 1; ...
0
votes
2answers
36 views

Monte Carlo Method crash?

I have a big problem trying to implement Monte Carlo Method to this function: D=log(T) Where T is a measured time, so T>0, and, obviously, it has a normal distribution. I have 10 measured ...
0
votes
1answer
126 views

Creating an R function to use mclapply from the multicore package

I need to analyze some simulated data with the following structure: h c x1 y1 x1c10 1 0 37.607056431 104.83097593 5 1 1 27.615251557 140.85532974 10 ...
0
votes
0answers
120 views

adding randomly selecting x number of cases from 4 groups to this script

I managed to get together the code (1) below. Its essentialy a monte carlo discriminat function script that also uses oms to output. It runs a given number of cases through discriminant function ...
1
vote
2answers
122 views

Creating Monte Carlo data for Dummy Variables in R

I'm setting up an Monte Carlo simulation, and I have been trying to create a set of dummy variables for 180 countries and 12 time periods. Given the large amount of data points, is there a shorter way ...
0
votes
0answers
443 views

How to simulate Monte Carlo integration in Matlab?

I'm new to Matlab and would greatly appreciate of someone could help! I calculated the values of my double Integral for different 'n'. [Integral from 0 to 1][Integral from 0 to x^3] e^(y/x) dydx ...
0
votes
1answer
73 views

How get this 'for loop' to plot 100 values in matlab?

How get this 'for loop' to plot 100 values in matlab? Can't figure out where to include the 'i' This is a monte carlo analysis plot of the operating point of a common-emitter amplifier for i=1:100 ...
1
vote
2answers
169 views

Option Pricing with volatility following a Garch process by use of Monte-Carlo Simulations

> Name Date Close CP ttmDaysW ttm Strike Fut Wibor lambda omega alpha beta sigma 1 OW20C1330 2011-01-19 0.60 c 42 0.1673307 3300 2768 0.0425 0.03985676 ...
2
votes
2answers
147 views

How to recognize ellipse/ellipsoid from random points? UN-weighted average?

Suppose we are getting random points in 2D (or 3D) which tend to be on ellipse (or ellipsoid). We can't guarantee points are uniformly distributed over ellipse (ellipsoid surface). The task is to ...
2
votes
2answers
67 views

How do i prove that my derived equation and the Monte-Carlo simulation are equivalent?

I have derived and implemented an equation of an expected value. To show that my code is free of errors i have employed the Monte-Carlo computation a number of times to show that it converges into ...
2
votes
1answer
511 views

How to use monte carlo method in matlab?

I need to verify that pi = integral from 0 to 2 of(sqrt(4-x^2))dx using the monte carlo method and 10^7 random numbers. I am a little confused about how to implement this in matlab. Could someone help ...
0
votes
2answers
93 views

Is there a way to generate a random variate from a non-standard distribution without computing CDF?

I'm trying to write a Monte Carlo simulation. In my simulation I need to generate many random variates from a discrete probability distribution. I do have a closed-form solution for the distribution ...
2
votes
1answer
363 views

Python Monte Carlo Simulation Loop

I am working on a simple Monte-Carlo simulation script, which I will later on extend for a larger project. The script is a basic crawler trying to get from point A to point B in a grid. The ...
1
vote
0answers
92 views

Parallel Simulation with Intel TBB in VS2010 using MKL for rng

I need to find the default probability of a derivative via Monte-Carlo simulation with C++ in VS2010 with Intel TBB and MKL installed and only 1GB of memory. Let S(t) denote the price of the ...
3
votes
2answers
201 views

Mathematica/CUDA reduce execution time

I'm writing a simple monte carlo simulation for particle transport. My approach is writing a kernel for CUDA and execute it as a Mathematica function. Kernel: #include "curand_kernel.h" #include ...
1
vote
2answers
167 views

Advantage of metropolis hastings or MonteCarlo methods over a simple grid search?

I have a relatively simple function with three unknown input parameters for which I only know the upper and lower bounds. I also know what the output Y should be for all of my data. So far I have ...
0
votes
1answer
66 views

How to perform Roll-out in MCTS in Complex Games

Okay I basically understand How MCTS works with node selection etc. What I don't understand is the random roll-out phase. Is it correct that I am randomly simulating future game steps till it ends in ...
4
votes
1answer
112 views

What is the relation/difference between Amazon DynamoDB and FlockDB?

I am trying to implement incremental PageRank using Monte Carlo Sampling. My data includes millions of relational data between 20 different entities. I found Amazon DynamoDB and FlockDB to be two ...
1
vote
1answer
88 views

MATLAB how do I access a specific coefficient in a symbolic equation system solution?

I need to run a simple Monte Carlo varying coefficients on a system of equations. I need to record the solved coefficient of one of the variables each time. The following gets me results from a ...
1
vote
1answer
108 views

Monte Carlo (Possibly Simulated Annealing?) Method For N Mutually Repelling Points on a Unit Sphere C++

I need to create an algorithm in C++ to simulate mutually repelling points on a sphere using a Monte Carlo method. So far what I have is this: #include <stdio.h> #include <string.h> ...
1
vote
1answer
587 views

Importance Sampling - Monte Carlo Integration

I am trying to implement Monte Carlo integration with importance sampling. I've created a trivial example - I wish to integrate h(x), which is has a student t-distribution (mu =1, sigma =1, df=100), ...
3
votes
2answers
220 views

Getting a random draw from the binomial distribution based on a sample statistic

EDIT: rephrased question for clarity of what I was wanting to achieve. I have an observed dataset from which I want to use some information to feed into a Monte Carlo simulation. I'm using R for this ...
0
votes
1answer
182 views

Python 3.2 Monte Carlo Pi Estimation?

I am just starting out with programming and this assignment is giving me a lot of trouble. How do I change the Monte Carlo code below (used for area under a curve) so that it estimates pi? from ...
0
votes
0answers
113 views

Speed up monte carlo simulation with nested loop (2)

I would like to know if there is a more efficiency way to speed up below code. It uses a procedure where subsampling is required in the nested loop (which a previous answer ...
0
votes
1answer
168 views

speed up a monte carlo simulation with nested loop in R

I would like to speed up the below monte carlo simulation of a DEA estimate A<-nrow(banks) effm<-matrix(nrow=A, ncol=2) m<-20 B<-100 pb <- txtProgressBar(min = 0, ...
0
votes
0answers
33 views

Writing the correct index in random Monte Carlo -ish sampling of data to calculate means

Ok, so I know that there are other codes talking about writing and using Monte Carlo and random sampling, but what I want to do seems to be a bit different and I have coded myself into a bit of a ...

1 2 3 4