Logical XOR - not available inh scilab 5.2
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