Mercurial > hg > mauch-mirex-2010
view _FullBNT/KPMtools/isvector.m @ 9:4ea6619cb3f5 tip
removed log files
author | matthiasm |
---|---|
date | Fri, 11 Apr 2014 15:55:11 +0100 |
parents | b5b38998ef3b |
children |
line wrap: on
line source
function p = isvector(v) % ISVECTOR Returns 1 if all but one dimension have size 1. % p = isvector(v) % % Example: isvector(rand(1,2,1)) = 1, isvector(rand(2,2)) = 0. s=size(v); p = (ndims(v)<=2) & (s(1) == 1 | s(2) == 1); %p = sum( size(v) > 1) <= 1; % Peter Acklam's solution