RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread James Hampton
the place values for base 16 numbering starting from right to left are 16^0, 16^1,16^2,16^3, etc. In case your wondering 16^1 means 16 to the power of 1, or just 16. Like wise 16^3 = 16 * 16 * 16. So if you hex value is 2f2, starting with the right most 2, (16^0 * 2)+ (16^1 * 15) + (16^2 * 2). Whi

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread MADMAN
Not sure what you mean, I just use a calculator F00 = 3840 2F2 = 754 dave Mckenzie Bill wrote: > > Could someone help me get a clear understanding of converting the hex number > to a nice decimal ring number or bridge number. > > Two examples that have me stumped are: > > F00 and 2f2. >

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Ole Drews Jensen
Hex is based on 16, where Dec is based on 10. When you see a value, no matter if it's in dec, hex, bin, or something else, think of each number as being number 0 (the right one), 1, 2, 3, and so on. If you for instance have the decimal value 579: Number 0 would be 9 Number 1 wou

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Kelly Cobean
Bill, Hex is equivalent to Base16 numbering. Decimal is really Base10 numbering. Let's look at an example of Base10 numbering broken down into it's components, then we'll tackle your examples.. The decimal number 4243 drawn out in Base10 is as follows: (4x10^3) + (2x10^2) + (4x10^1) +

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Persio Pucci
Nice going, Ole! Now, how about an easy way to convert decimal to hex without going through binary (the way I learned)? :) Persio - Original Message - From: "Ole Drews Jensen" To: Sent: Thursday, March 14, 2002 12:07 PM Subject: RE: Hex to Decimal for the RD [7:38223]

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Fred Ingham
All very good but an easier route is to configure the ring numbers in hex; the router will give the decimal equivalents. int tok 0 ring 16 source-bridge 0xf00 2 0x2f2 will appear as int tok 0 ring 16 source-bridge 3840 2 754 Fred. Kelly Cobean wrote: > > Bill, >Hex is equivalent to Base

RE: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Ole Drews Jensen
To: [EMAIL PROTECTED] Subject: Re: Hex to Decimal for the RD [7:38223] Nice going, Ole! Now, how about an easy way to convert decimal to hex without going through binary (the way I learned)? :) Persio - Original Message - From: "Ole Drews Jensen" To: Sent: Thursday, March 14, 200

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Tom Lisa
ay I learned)? :) > > Persio > > - Original Message - > From: "Ole Drews Jensen" > To: > Sent: Thursday, March 14, 2002 12:07 PM > Subject: RE: Hex to Decimal for the RD [7:38223] > > > Hex is based on 16, where Dec is based on 10. > > > > Whe

Re: Hex to Decimal for the RD [7:38223]

2002-03-14 Thread Priscilla Oppenheimer
At 09:01 AM 3/14/02, Mckenzie Bill wrote: >Could someone help me get a clear understanding of converting the hex number >to a nice decimal ring number or bridge number. > >Two examples that have me stumped are: > >F00 and 2f2. Why would just those two numbers have you stumped? If you can do any