Mercurial > hg > ltpda
view testing/utp_1.1/utp_fcns/isEmptyDouble.m @ 44:409a22968d5e default
Add unit tests
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 18:42:11 +0100 |
parents | |
children |
line wrap: on
line source
% ISEMPTYDOUBLE returns true if the input is an empty double []. % % CALL: res = isEmptyDouble(val) % % OUTPUTS: true, flase % % VERSION: $Id: isEmptyDouble.m,v 1.1 2009/07/20 15:13:38 ingo Exp $ % function res = isEmptyDouble(val) res = isnumeric(val) && isempty(val); end