existf.m
author A.M. Thurnherr <athurnherr@yahoo.com>
Thu, 21 Nov 2013 11:25:53 +0000
changeset 11 21c72df92e2c
parent 0 40938dd7a1f1
permissions -rw-r--r--
post US5 & merged with whoosher local copy

function [yn,pos]=existf(d,n)
% function yn=existf(d,n)
% checks for existance of variable (n) in data field (d)
an=fieldnames(d);
pos=strcmp(an,n);
yn=sum(pos);