Mercurial > hg > camir-ismir2012
view toolboxes/FullBNT-1.0.7/KPMtools/hash_add.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
line wrap: on
line source
function hash_add(key, val, fname) % HASH_ADD Append key,value pair to end of hashtable stored in a file % function hash_add(key, val, filename) % % See hash_lookup for an example if ~exist(fname, 'file') % new hashtable hashtable.key{1} = key; hashtable.value{1} = val; else %hashtable = importdata(fname); %hashtable = load(fname, '-mat'); load(fname, '-mat'); Nentries = length(hashtable.key); hashtable.key{Nentries+1} = key; hashtable.value{Nentries+1} = val; end save(fname, 'hashtable', '-mat');