how to Perform Xor on Non Real matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to Perform Xor on Variable that contain both real and imaginary part, so can any one help me out as xorr give me an error
??? Error using ==> xor
Inputs must be real.
pl Help me
0 Kommentare
Antworten (1)
Walter Roberson
am 6 Mär. 2016
When A and B are complex-valued, their xor is
xor( A ~= 0, B ~= 0)
2 Kommentare
Walter Roberson
am 6 Mär. 2016
A = [1 + 1i, 0 + 0i];
B = [0 + 1i, 1 + 1i];
xor( A ~= 0, B ~= 0)
ans =
0 1
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!