Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
579 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
1answer
66 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 ...
2
votes
2answers
493 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 ...
1
vote
2answers
129 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.
0
votes
1answer
176 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
265 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
148 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
358 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
351 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 ...