Skip to content
Snippets Groups Projects
iskey.m 262 B
Newer Older
jacques.grelet_ird.fr's avatar
jacques.grelet_ird.fr committed
function bool = iskey(hash,key)
%ISKEY Check to see if the hash is currently using a key
%   bool = iskey(hash,key)

% Copyright (c) 2004 Matthew Krauski (mkrauski@uci.edu), CNLM, UC Irvine

index = find(strcmp(hash.keys,key));
bool = ~isempty(index);