Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the seed number in random number generation?

Status
Not open for further replies.

superluminal

Member level 4
Joined
Jan 31, 2002
Messages
79
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,286
Location
Inside a quantum well
Activity points
806
I want to know more about random number generation and how the software packages, like MATLAB, generate noise and random numbers.

What is the seed number? How exactly is it used to generate random numbers? Why do I find it, by defualt, "-1" in those programs? Are there any limits for it? How it will affect the "quality" of randomness?

I don't search for a code or algorithm, just I want to understand how it works !

Thanks in advance.
 

**broken link removed**
**broken link removed**
 

Allot of times it's like this:

The random function is more likely a pseudo random function generating outputs with a certain distribution (uniform, gaussian, ...).
This means that when you give the same seed, the function always gives the same outputs in the same order.

The seed is the thing which makes it "random". Time, ticks since startup, a sequence on the keyboard (with pauses between keystrokes), ... can generate a +- random seed. Another seed generates another random sequence.

Antharax
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top