bitset function with LSB algorithm
Mostrar comentarios más antiguos
I use the function: C = bitset(A, bit, v) to apply LSB algorithm
but faced problem when A = negative integers
error: Error using ==> bitset Inputs must be non-negative integers.
so, I want to used bitset function with negative integers to apply LSB algorithm
Respuestas (1)
Walter Roberson
el 16 de Jul. de 2012
0 votos
Don't let the integers be negative. Use an unsigned integer data type such as uint8.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!