Something like this
A = {'high','low','low'};
B = strcmp(A,'high')
Bear in mind that this only tests whether elements of A contain 'high'. It's implied that the only possible contents are 'high' and 'low', so that should be sufficient. If it's not, then we need to ask how other inputs should be represented.