No BSD License  

Highlights from
compare text

from compare text by iokinberistain Beristain
It comapares two diferent words, and the resilts is 1 or 0. That's it

resul=equal(a,b)
function resul=equal(a,b)
% Bi hizki, a eta b, saru eta berdinak diren zihurtatzen da
% Introducir dos palabras a y b; y se compara si son iguales
resul=0;
if length(char(a))==length(char(b))
    if char(a)==char(b)
        resul=1;
    end
end

Contact us at files@mathworks.com