Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old March 18th, 2006, 07:15 PM
Mark Hobley
Guest
 
Posts: n/a
Default vec - a misunderstanding

I am trying to understand how the vec function is used.

I have produced the following code, but the behaviour is not as expected.

$binstring = '@' ; # 01000000 binary ascii code
print vec($binstring,0,1); # returns 0, the binary value of bits 0 and 1
vec($binstring,0,1) = 3; # bits 0 and 1
print $binstring; # returns A, I am expecting C (binary ascii code 01000011)
vec($binstring,2,1) = 3; # bits 2 and 3
print $binstring; # returns E, I am expecting O (binary ascii code 01001111)

Documentation tells me that vec has the syntax:

vec EXPR, OFFSET, BITS

where BITS is a power of 2 from 1 to 32.

I presumed offset of zero would give me the leftmost (most significant) bit.
It actually gives me the rightmost bit.

Is this expected behaviour?

The number of bits is a power of two ranging from 1 to 32. Presumably this
means that minimum element size (BITS = 1) is 2^1 = 2 bits, and therefore I
cannot use single bit elements.

Is it correct that if BITS = 1, my elements should be 2 bits wide?

I presumed that the offset was in number of elements, so an offset of 1, would
point to bits two and three. It actually appears to point to bit 1, which is
part of the first element.

Presumably then, offset is in number of bits, not number of elements. Is this
correct?

When I set the value of my element to three, indicating both bits set to 1, I
only appear to be getting a single bit set.

What is going on here?

--
Mark Hobley
393 Quinton Road West
QUINTON
Birmingham
B32 1QE

Telephone: (0121) 247 1596
International: 0044 121 247 1596

Email: markhobley at hotpop dot donottypethisbit com

http://markhobley.yi.org/

  #2  
Old March 18th, 2006, 07:45 PM
John Bokma
Guest
 
Posts: n/a
Default Re: vec - a misunderstanding

markhobley@hotpop.deletethisbit.com (Mark Hobley) wrote:

[color=blue]
> The number of bits is a power of two ranging from 1 to 32. Presumably
> this means that minimum element size (BITS = 1) is 2^1 = 2 bits, and
> therefore I cannot use single bit elements.[/color]

Yes you can, but you can't use 3 or 5, the *number* has to be a power of
two, so 2^0, 2^1, 2^2, 2^3, 2^4.
[color=blue]
> Is it correct that if BITS = 1, my elements should be 2 bits wide?[/color]

No, it's 1, but you can't use 3 bits wide, since 3 is not a power of 2 (if
I read the documentation correctly).


--
John Bokma Freelance software developer
&
Experienced Perl programmer: http://castleamber.com/
 

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles