Bit xor of two binary strings and conversion into decimal
Afficher commentaires plus anciens
Hi, I have two large binary strings (e.g 256 bits each), then how to perform bit Xor operation and then convert the answer into decimal number.
str1='11010011110111110000110110111111';
str2='00011111001101011010001111100001';
str3=bitxor(str1,str2);
%%getting error in str3
3 commentaires
James Tursa
le 19 Juin 2020
Modifié(e) : James Tursa
le 19 Juin 2020
To be clear, you want a decimal number that can't be represented in any native integer type? A 256-bit integer? Or did you just mean you want the result as a vector of 0's and 1's but not character?
lilly lord
le 19 Juin 2020
James Tursa
le 19 Juin 2020
See my edited answer.
Réponse acceptée
Plus de réponses (1)
David Hill
le 19 Juin 2020
Use java BigInteger
import java.math.*;
a=BigInteger(str1,2);
b=BigInteger(str2,2);
c=a.xor(b);%c will be the decimal BigInteger
1 commentaire
lilly lord
le 19 Juin 2020
Catégories
En savoir plus sur Characters and Strings dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!