Options

bitmask operations?

harri678harri678 Member Posts: 34 Contributor II
edited November 2018 in Help
Hi.

is there any way to use some kind of bitmask operations in the "generate attributes" operator? I have an integer with bits 2^0-4 used for bit information andI want to generate binominal attributes based on one bit's value...

Greetings,
Harald

Answers

  • Options
    landland RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 2,531 Unicorn
    Hi Harald,
    although there aren't any bit mask operations available directly, you can use the modulo operator for simulating them. To test if the first bit is set, just use the modulo 2 operation for the higher bit n use this forumlar:

    (x % 2^(n+1) - x % 2^n) / 2^n

    Greetings,
      Sebastian
  • Options
    harri678harri678 Member Posts: 34 Contributor II
    thanks!
Sign In or Register to comment.