Questions tagged [simulate]

For issues relating to simulating a system, action, function, or behavior.

Simulation is an attempt to model a real-life or hypothetical situation so that it can be studied to see how the system works. By changing variables in the simulation, predictions may be made about the behaviour of the system. It is a tool to virtually investigate the behaviour of the system under study.

459 questions
-1
votes
1 answer

Is it possible to simulate Silverlight UI thread (to reproduce deadlock scenario)?

I have a library with legacy code that causes a deadlock in a Silverlight application. What makes it harder to investigate is that it's only Silverlight app that fails. When used in WPF or Windows Store application, the same code runs fine (this a…
Vagif Abilov
  • 9,279
  • 5
  • 52
  • 91
-2
votes
3 answers

How to click on an image with a hyperlink using Javascript?

The HTML of the page I wish to use for this is as follows:
r3dd3x
  • 23
  • 5
-2
votes
0 answers

Does anyone know why Tinkercad wont simulate some circuits?

[Been having this issue lately and im not sure why, maybe its to complicated? if someone could explain that would be a huge help.][1]
-2
votes
2 answers

Simulate someone's voice

I'm gonna create a game for mobile devices with Unity Engine which is like "Tom Talking Cat" game but with some differences. In face, I'm not gonna just do some effects on user voice. I want to simulate someone's voice. Actually I want to make user…
Mahdi
  • 73
  • 7
-2
votes
2 answers

Trigger a mouse click on the element under the cursor

Is it possible to simulate left mouse click on the element that lies beneath the mouse cursor?
Paulius
  • 200
  • 1
  • 10
-3
votes
1 answer

Simulate an election

import random def trial_election(win_chance): if random.random() < win_chance: return 'win' else: return 'lose' region_1 = trial_election(0.87) region_2 = trial_election(0.65) region_3 = trial_election(0.17) tally = 0 for trial in…
Rose
  • 1
  • 1
-3
votes
2 answers

Making Particles Move Randomly Within A Circle

I am attempting to make plotted points move around within a circle of a known radius and center. At the moment I am able to generate points within the boundary, but now I need to make them move. I have the following script to generate the initial…
Vladamir
  • 249
  • 1
  • 2
  • 9
-4
votes
1 answer

Script as an onload script

I got a script for a popunder but the popunder just opens if you click anywhere on the website. They did it like this to avoid that AdBlocks don't block the pounder. So now the question: Could anybody help me to write the script as an onload script.…
thatsnoi
  • 1
  • 1
-5
votes
1 answer

How to simulate multiplication by addition java

I need to simulate multiplication by addition by not using the operator of multiplication such as asterisk This is my code trial code but seems not working :( while (sum < a + b) { sum += a; } System.out.println (a+" x "+b+" is "+sum); } }
1 2 3
30
31