The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
21 views

I need to change this throttled alogorithm to use the concept of stochastic hill climbing in java [closed]

I wonder If anyone has done it before please help with your source code or any useful opinion here is the throttled source code . package cloudsim.ext.datacenter; import java.util.Iterator; import ...
-3
votes
0answers
27 views

Derivation of autocorrelation of a BPSK modulated signal [closed]

How to calculate auto-correlation of a bpsk modulated signal or how to calculate expectation value of complex exponential function manually not by using matlab or any other software? for example,if ...
0
votes
2answers
101 views

Map Generator with Weighted Perlin Noises

I have got an arbitary number of perlin noise maps and a weight for each. The sum of all weights is 1, but that shouln't make a difference. I want to get that noise with the highest value regarding ...
4
votes
2answers
137 views

Tutorial on stochastic simulation in Haskell

I'd like to use Haskell for stochastic simulation, but I don't know how. I've read Hutton's 'Programming in Haskell', and I'm comfortable writing deterministic functional programs. However, I don't ...
2
votes
3answers
95 views

In what situations does the difference between random numbers generated on [0,1) and those generated on [0,1] make a difference?

I'm used to pseudo random number generators that return floating point values in the half open interval [0,1). I've seen some reference to RNGs that can return values on the closed interval [0,1], ...
1
vote
2answers
93 views

generate random long user ID

I am writing an android app giving each client a long user ID through this formula: long userID = (long) (Math.random() * 2 * Long.MAX_VALUE - Long.MAX_VALUE); Am I utilizing MAX_VALUE correctly ...
2
votes
1answer
99 views

Is there a python module to solve/integrate a system of stochastic differential equations?

I have a system of stochastic differential equations that I would like to solve. I was hoping that this issue was already address. I am a bit concerned about constructing my own solver because I fear ...
0
votes
1answer
229 views

Gradient descent stochastic update - Stopping criterion and update rule - Machine Learning

My dataset has m features and n data points. Let w be a vector (to be estimated). I'm trying to implement gradient descent with stochastic update method. My minimizing function is least mean square. ...
1
vote
1answer
492 views

Python Code: Geometric Brownian Motion - what's wrong?

I'm pretty new to Python, but for a paper in University I need to apply some models, using preferably Python. I spent a couple of days with the code I attached, but I can't really help, what's wrong, ...
0
votes
1answer
174 views

How to solve a linear differential equation with a random coefficient in Mathematica

I have a differential system like dx/dt = A x(t) + B y(t) dy/dt = C x(t) + D y(t) where A, B, C, and D are real constants. Now I need to explore the behavior of the system if A, instead of being a ...
0
votes
1answer
265 views

How should Stochastic Universal Sampling be combined with Elitism in Genetic Programming?

Having implemented Ranked Selection ("RS") and Stochastic Universal Sampling ("SUS") [Baker, 1987] I'd now like to introduce Elitism (reintroduction of the fittest last-generation members into ...
2
votes
1answer
150 views

Is stochastic raytracing inherently cache-unfriendly?

Specifically in the context of a real-time raytracer where view updates are frequent? The obvious answer would seem to be "yes" and yet I wonder if any methods have been found to accelerate Monte ...
7
votes
4answers
375 views

Is there a statistical profiler for python? If not, how could I go about writing one?

I would need to run a python script for some random amount of time, pause it, get a stack traceback, and unpause it. I've googled around for a way to do this, but I see no obvious solution.
1
vote
1answer
448 views

Understanding Stochastic Hill Climber

I've been trying to understand the stochastic hill climber for a while, but not having any luck with it. I've looked through a book on heuristics and got a pseudo code. I don't understand what the ...
0
votes
1answer
628 views

Stochastic universal sampling

I need a sus implementation in c# for finding candidate individuals in a population this is what i have so far but im not sure if it is correct. public void ...
0
votes
1answer
292 views

Solving stochastic maximum bipartite matching problem

I have faced the following problem: there are two disjoint sets, A and B for each pair of elements (a, b) (a belongs to set A, where b belongs to set B) there a probability pij is known in advance. ...
0
votes
1answer
524 views

MATLAB vs Python for programming Probability Based Program

I am writing programs that are based on robots navigating through mazes (would involve stochastic programming). Since it will involve heavy matrix handling (plus point for MATLAB) and simulating a ...
0
votes
4answers
527 views

Python/Biomolecular Physics- Trying to code a simple stochastic simulation of a system exhibiting conditional behavior!

*edited 6/17/10 I'm trying to understand how to improve my code (make it more pythonic). Also, I'm interested in writing more intuitive 'conditionals' that would describe scenarios that are ...
4
votes
3answers
1k views

Java implementation of stochastic indicator for finance

Hy, I'm searching for an API/library offering an implementation of the financial stochastic technical analysis. Does someone know a ready-do-use solution? Thanks,
2
votes
2answers
857 views

Generate stochastic random deviates from a density object with R

I have a density object dd created like this: x1 <- rnorm(1000) x2 <- rnorm(1000, 3, 2) x <- rbind(x1, x2) dd <- density(x) plot(dd) Which produces this very non-Gaussian ...