Click here to Skip to main content
15,901,426 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: building error Pin
CPallini1-Jan-08 20:57
mveCPallini1-Jan-08 20:57 
GeneralRe: building error Pin
Hamid_RT2-Jan-08 2:48
Hamid_RT2-Jan-08 2:48 
GeneralRe: building error Pin
gentleguy2-Jan-08 19:35
gentleguy2-Jan-08 19:35 
Questionhow to create a matrix with c++? [modified] Pin
gentleguy1-Jan-08 16:48
gentleguy1-Jan-08 16:48 
AnswerRe: how to create a matrix with c++? Pin
Nishad S1-Jan-08 18:18
Nishad S1-Jan-08 18:18 
GeneralRe: how to create a matrix with c++? Pin
gentleguy1-Jan-08 19:05
gentleguy1-Jan-08 19:05 
GeneralRe: how to create a matrix with c++? Pin
Nishad S1-Jan-08 19:13
Nishad S1-Jan-08 19:13 
GeneralRe: how to create a matrix with c++? Pin
CPallini1-Jan-08 21:22
mveCPallini1-Jan-08 21:22 
NS17 wrote:
float f = ( rand() % 1000 ) / 1000; // random number between 0 and 1

the above always evaluates to
float f = 0;


Moreover, the best way to produce statistically meaningful random values inside a range is (see http://msdn2.microsoft.com/en-us/library/398ax69y.aspx[^])
int u = (double)rand() / (RAND_MAX + 1) * (range_max - range_min) + range_min;


Smile | :)

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

[my articles]


GeneralRe: how to create a matrix with c++? Pin
Nishad S1-Jan-08 23:18
Nishad S1-Jan-08 23:18 
GeneralRe: how to create a matrix with c++? Pin
CPallini1-Jan-08 21:29
mveCPallini1-Jan-08 21:29 
GeneralRe: how to create a matrix with c++? Pin
Nishad S1-Jan-08 23:26
Nishad S1-Jan-08 23:26 
GeneralRe: how to create a matrix with c++? Pin
gentleguy2-Jan-08 20:41
gentleguy2-Jan-08 20:41 
GeneralDll import/export Pin
ForNow1-Jan-08 15:41
ForNow1-Jan-08 15:41 
GeneralCapture Left Mouse [modified] Pin
Oliver1231-Jan-08 13:01
Oliver1231-Jan-08 13:01 
GeneralRe: Capture Left Mouse Pin
Nishad S1-Jan-08 18:33
Nishad S1-Jan-08 18:33 
GeneralRe: Capture Left Mouse Pin
Mark Salsbery2-Jan-08 7:40
Mark Salsbery2-Jan-08 7:40 
Generalconvert integer number to string text Pin
KARFER1-Jan-08 8:12
KARFER1-Jan-08 8:12 
GeneralRe: convert integer number to string text Pin
CPallini1-Jan-08 8:25
mveCPallini1-Jan-08 8:25 
GeneralRe: convert integer number to string text Pin
KARFER3-Jan-08 1:24
KARFER3-Jan-08 1:24 
GeneralRe: convert integer number to string text Pin
Luc Pattyn1-Jan-08 8:46
sitebuilderLuc Pattyn1-Jan-08 8:46 
GeneralRe: convert integer number to string text Pin
Hamid_RT2-Jan-08 2:53
Hamid_RT2-Jan-08 2:53 
GeneralRe: convert integer number to string text Pin
Joan M2-Jan-08 9:47
professionalJoan M2-Jan-08 9:47 
GeneralRe: convert integer number to string text Pin
KARFER3-Jan-08 1:31
KARFER3-Jan-08 1:31 
GeneralManifest files and XP/Vista look Pin
Tankko1-Jan-08 7:23
Tankko1-Jan-08 7:23 
AnswerRe: Manifest files and XP/Vista look Pin
JudyL_MD1-Jan-08 9:07
JudyL_MD1-Jan-08 9:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.