Home > matgraph > @permutation > isempty.m

isempty

PURPOSE ^

isempty(p) --- check if the permutation p is of size 0

SYNOPSIS ^

function yn = isempty(p)

DESCRIPTION ^

 isempty(p) --- check if the permutation p is of size 0

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function yn = isempty(p)
0002 % isempty(p) --- check if the permutation p is of size 0
0003 s = size(p);
0004 yn = s(1)==0;

Generated on Fri 05-Feb-2010 13:55:18 by m2html © 2003