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
1 answer

How to Continuous Integration tools check status of test process (like building, fail, success)

I use php to develop a tool where user can upload their apk file and test write in Calabash They click run test then my tool will run this test and return result for user I use exec() in php to run test command (in window), then push result to a txt…
0
votes
1 answer

Compute FFT in Matlab

I have an array of numbers in variable "filter". I wanted to compute Fourier Transform (fft) on every 32 data consecutively using matlab. But the codes below doesn't seems to work. Anyone have a better solution? for aa=1:length(filter)-32 %scans…
ActiveUser
  • 39
  • 2
  • 5
0
votes
1 answer

Count fragments or sequence of contiguous numbers in an array

Say you have an array of integers, eg: [0,1,2, 5,6,7, 9,10,11]. In an ideal world they would be sorted, but if the algorithm can work with unsorted, even better. I need to know how many "fragments" are in this group. Imagine the array makes up an…
Nick
  • 2,803
  • 1
  • 39
  • 59
0
votes
1 answer

Xcode cocoa simultaneously update interface by timer and continuous action by slider

I need to update some user interface objects by timer, but when I touch slider with continuous action everything freeze beside slider. in iOS this version work fine, but in mac os x some problems :( -…
0
votes
3 answers

SAS continuous loop

data m1; set t1; do i = 1 to 29; set t2 point=i; end; run; data test; do i=1 to 29; set t2 point=i; end; run; I can understand why it is a continuous loop for data test but I don't know how to explain why data m1 is not a infinite loop.…
Mike
  • 1
  • 2
0
votes
0 answers

Creating a Continuous File Reading-Executing Shell Script

I need to write something that will read and execute all the files(Mainly executable scripts) inside one or more folders; in other words, a continuous chain with a break when finished. I'm new to shell and need syntax help. I'm on Ubuntu…
0
votes
1 answer

UILabel text is not updating on iPad

We have a delegate method which will be called for approximately 20 times in a second. In the delegate method we are updating our UILabel which represents the counter like below mentioned code: - (void) counterUpdated:(NSString *) value { …
0
votes
1 answer

Javascript Continuous Scroller - speeding up on a page refresh

I have a javascript data ticker that I am trying to implement in IBM Cognos. I have found some code online, in which I have made a few changes to work with my setup. On a page load, the ticker is scrolling at one speed, but on a page refresh, the…
0
votes
2 answers

How do i stop continuous builds in CCNET dashboard?

I have successfully setup a CCNet web dashboard and everything is working fine has expected. And i have triggered a force build from CCNET and it ran successfully with out causing any error. but, the problem what i am facing is that, whenever i'm…
0
votes
1 answer

Continuous Collision Detection - how to find the collision according to these 2 equations in C++

I know this topic is known - Continuous Collision Detection I have 2 Spheres that I have to find intersection between them as shown in the image. the equations refer to the upper draw and I need to find the minimal t and then check something about…
Alon Shmiel
  • 6,753
  • 23
  • 90
  • 138
0
votes
1 answer

Java Continuous Input Code

Okay, so the program that I'm trying to figure out how to code (not really fix), I have to use Java to accept continuous input from the user until they enter a period. It then must calculate the total characters that the user input up to the…
Anthony Owen
  • 33
  • 2
  • 7
0
votes
1 answer

AFNetworking url request every 20 sec

I want to download some information from url every 20 seconds and update view based on that info (2-3 labels change text values). I'm using AFNetworking for making request operations in my app. Should I use NSTimer and make it call method with…
zhuber
  • 5,364
  • 3
  • 30
  • 63
0
votes
1 answer

MS Unit Continuous Integration with TFS

I'm tasked with creating a Continuous Integration build for our project with TFS, and one of the requirements is to create unit test continuous integration with MS Unit. How can I set up TFS to use continuous integration with MS Unit? Thank you!
0
votes
1 answer

how to request server without continuous connection

i use web service to exchange data betwen c# client and php server to check data change. But i must request continus to hosting but if i do that the server will be overload. WebClient cGet = new…
0
votes
1 answer

HLA High Level Assembly Continuous Loop

The problem wants to loop through a decimal from input until the only number left is one. However, once first loop reaches 0 it should beging looping again from first digit minus 1 like this, Input decimal for loop: 4 Your loop result is: 4321 321…
user1552586