DSPRelated.com
Code

Logical XOR - not available inh scilab 5.2

Senthilkumar March 24, 20111 comment Coded in Scilab

This function is used to perform the logical xor. This is a very useful function because it is not available in the scilab version upto 5.2.2.

function [value] = xor(A,B)
  if(A==B)
    value = 0;
  else
    value = 1;
  end
endfunction