FORTRAN POPPAR Equivalent in Matlab
2 views (last 30 days)
Show older comments
Hello Matlab comunity, my question is what would be the equivalent to FORTRAN POPPAR function in Matlab?
According to gnc webpage, POPPAR(I) returns parity of the integer I, i.e. the parity of the number of bits set ('1' bits) in the binary representation of I. It is equal to 0 if I has an even number of bits set, and 1 for an odd number of '1' bits.
Thank you!
0 Comments
Accepted Answer
More Answers (1)
Walter Roberson
on 9 Jul 2021
bitget() can be faster.
I = randi([0 2^32-1], 1, 1, 'uint32')
timeit(@() mod(nnz(dec2bin(I)-'0'),2),0)
timeit(@() fold(@xor, dec2bin(I) - '0', 0), 0)
timeit(@() fold(@xor, bitget(I, 1:32), 0), 0)
timeit(@() mod(sum(bitget(I,1:32)),2),0)
See Also
Categories
Find more on Fortran with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!