how to Perform Xor on Non Real matrix

2 views (last 30 days)
Syed Asad
Syed Asad on 6 Mar 2016
Commented: Walter Roberson on 6 Mar 2016
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

Answers (1)

Walter Roberson
Walter Roberson on 6 Mar 2016
When A and B are complex-valued, their xor is
xor( A ~= 0, B ~= 0)
  2 Comments
Syed Asad
Syed Asad on 6 Mar 2016
Edited: Walter Roberson on 6 Mar 2016
can you please elaborate it ??
For Example , Let A = 1 + i1 + 0 +i0 and B = 0 + i1 + 1 +i1 then how i can perform A Xor B in Matlab
Walter Roberson
Walter Roberson on 6 Mar 2016
A = [1 + 1i, 0 + 0i];
B = [0 + 1i, 1 + 1i];
xor( A ~= 0, B ~= 0)
ans =
0 1

Sign in to comment.

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!