Dear higher mathers,
I see in /doc/3.audio.examples/33.sampler.oneshot
that a message is sent to a line~ object via 'phase' to start at '1'(so far so good) and go to '4.41e+008' in '1e+007' seconds...hmm, for me, not so good.
Can anyone shed some light as to what 'numbers' those represent? Are they 'C++' things or a hexadecimal things?
Thanks,
Clue-less Christopher _____________________________________________________________ Dr. Christopher Keyes, BA Course Coordinator/ Assistant Professor - Department of Music and Fine Arts Hong Kong Baptist University 224 Waterloo Road, Kowloon, Hong Kong Office Phone: (852) 3411-7388 Office Fax: (852) 3411-7870 e-mail: ckeyes@hkbu.edu.hk http://www.hkbu.edu.hk/~ckeyes _____________________________________________________________
On Mon, 8 Mar 2004, KEYES CHRISTOPHER JAY wrote:
'4.41e+008' in '1e+007' seconds...hmm, for me, not so good. Can anyone shed some light as to what 'numbers' those represent? Are they 'C++' things or a hexadecimal things?
this is a conveniant and more or less common way of writing long numbers (very big or very small). the part before the "e" shows the details, the "e" stands for 10 and the part after the "e" for how many 10s there are. so the numbers you mention above resolve to: 4.41 x 10 pow 8 = 441.000.000 1 x 10 pow 7 = 10.000.000
2.3e-005 would be 2.3 x (1 / 10 pow 5) = 0.000023
hope that helps. ub