bitset function with LSB algorithm
显示 更早的评论
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
回答(1 个)
Walter Roberson
2012-7-16
0 个投票
Don't let the integers be negative. Use an unsigned integer data type such as uint8.
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!