function [pp,ss] = get_ddparents(DFSA,q) % returns list of parents of q in DFSA [pp,nss] = find(DFSA.delta==q); ss = DFSA.ALF(nss); % ah, the elegance of matlab! return