Questions tagged [continuous]

A random variable X is called continuous if its set of possible values is uncountable, and the chance that it takes any particular value is zero (P(X=x)=0 for every real number x). A random variable is continuous if and only if its cumulative probability distribution function is a continuous function.

Overview

From Mood et al. (page 60, 1974):

"A random variable X is called continuous if there exists a function fX (.) such that

enter image description here

for every real number x. The cumulative distribution function FX (.) of a continuous random variable X is called absolutely continuous".

Mood, A. M., Graybill, F. A., & Boes, D. C. (1974). Introduction to theory of statistics. (B. C. Harrinson & M. Eichberg, Eds.) (3rd ed., p. 564). McGraw-Hill, Inc.

Excerpt reference: Glossary of Statistical Terms from berkeley.edu

Tag usage

Questions on tag should be about implementation and programming problems, not about the statistical or theoretical properties of this type of data. Consider whether your question might be better suited to Cross Validated, the Stack Exchange site for statistics, machine learning and data analysis.

438 questions
0
votes
0 answers

Allocating mutiple pages and create continuous address space

I want to create a big buffer in kernel with continuous address space using struct page. The idea is to use alloc_page to create nr_pages * pages (I must strongly NOT use alloc_pages(...,order) which returns one struct page *page) and then somehow…
Mike R
  • 11
  • 3
0
votes
1 answer

How to count series of continuous values in Excel

I was hoping you could help me with this (relatively) simple problem.. I have a dataset in Excel where a column, let's say A5:A605, is a series of binary values - only ones and zeros. Now I want to know two things: How many times is there a "set"…
Renske
  • 1
  • 1
0
votes
1 answer

Using Hudson Continuous Integration, can I track build status separately for each branch without manually adding jobs for each branch?

We're using git for version control and the workflow is such that people do their work in a branch. In order to benefit from CI in that branch we want Hudson to build it and test it. However, just because the branch is broken doesn't mean the…
Dobes Vandermeer
  • 8,463
  • 5
  • 43
  • 46
0
votes
1 answer

Node execfunc and deploy script permission error

I'm doing a post-receive hook for a Git deployment to delete the directory completely, git pull and replace a Git repo. I have a node server running to listen for the webhook. After it hears the webhook, it would execute the following script.…
huynle
  • 53
  • 1
  • 7
0
votes
5 answers

Sum Series with Functions - Continously adding previous answers?

I'm learning the concepts of functions in Python and could use a little advice. I'm trying to write a program that will use the algebraic function m(i) = (i) / (i + 1) for inputs 1 through 20. So far I've got that to work, but now I want to add all…
Norr
  • 135
  • 1
  • 8
0
votes
2 answers

SQL Server : find Cust with Continuous Enrollment

I have a task to solve well known problem in industry task to ID those CustID who have continuous activity , for given period of time and we allow little breaks between contracts. I did first part populating matrix table like in snippet below for…
Mario Trento
  • 513
  • 1
  • 4
  • 14
0
votes
1 answer

how to receive UDP packets continuously

I want to receive UDP packets continuously from the port. I'm using recvfrom() to receive packets. How to put delay after receiving a single packet. I want to receive more than 50 packets. For that I need help. Thanks in advance....
ulaga
  • 93
  • 1
  • 5
  • 11
0
votes
1 answer

Servo continuous rotation Arduino Serial

I'm working on a Bluetooth controlled Arduino robotic arm. I want that when I send an integer, a servo moves, and when I send another Int, it stops. All I have found on forums are systems where the servo moves to a specific position, but I want it…
Hugo Trombert
  • 25
  • 1
  • 8
0
votes
1 answer

Move projects from an older version of TeamCity server to a newer version

I have two TeamCity Servers which are running on different software versions: one server is running "TeamCity Enterprise 9.1.7" whereas the other Server is running "TeamCity Professional 7.0.2". What is the best way to perform a migration. I want to…
hoChay
  • 37
  • 10
0
votes
1 answer

Open street Map api android

I tried to find OSM api for my android app, but projects such as osmdroid have only descret zoom. But my application must have smooth zoom (like in google maps, mapsme)
0
votes
1 answer

In Unity3d, How can I read the position data from .txt file continuously?

In Unity3D, I want to load position data from text file. Here is an example of the text file. These are simulation results. The simulation program generate 30 data per a second. So, I want to visualize result in realtime. The contents are x, y, z…
0
votes
1 answer

How can I continuously load the position data from .txt file?

In Unity3D, I want to load position data from text file. Here is an example of the text file. data_01.txt 1; -5; -10 data_ 02.txt 2; 2; 5 data_03.txt 3; 2; 4 ............... all files are 1 line. I'd like to input these data into a object. I want to…
0
votes
1 answer

Get a continuous touch coordinates

I want to continuously keep receiving the touch coordinates when finger is in the same exact place meaning getting the CASE.MOVE_DOWN Continuously. Now the problem is android only gives CASE.MOVE_UP CASE.MOVE_DOWN CASE.MOVE_MOVE So is there…
0
votes
1 answer

"InactiveInstance" WebJob Status for Continuous and Singleton jobs

i have created a continuous webjob on azure, and it is running as singleton by adding is_singelton to true in the settings.job. sometimes, i notice that it gives me status of InativeInstance. what does this mean? please if any one can describe it…
Nadeem Tabbaa
  • 119
  • 3
  • 9
0
votes
1 answer

PHP script continuing to run after page close [initiated from AJAX]

Everything I google tells me this should not be happening, however it is. I'm building a migration tool to build a 'master database'. I have an admin panel, only accessible to a few select people. There is a merge button that starts an AJAX call to…
Travis
  • 157
  • 1
  • 13