Code covered by the BSD License  

Highlights from
Statistical Learning Toolbox

from Statistical Learning Toolbox by Dahua Lin
Functions for statistical learning, pattern recognition and computer vision, covering many topics.

Description of slisguid
Home > sltoolbox > utils_ex > slisguid.m

slisguid

PURPOSE ^

SLISGUID Judges whether the input can represent a GUID

SYNOPSIS ^

function b = slisguid(v)

DESCRIPTION ^

SLISGUID Judges whether the input can represent a GUID

 $ Syntax $
   - b = slisguid(v)

 $ Description $
   - b = slisguid(v) judges whether the input v conforms to the 
     matlab representation of GUID (1 x 16 uint8 array). 

 $ History $
   - Created by Dahua Lin, on Aug 12nd, 2006

CROSS-REFERENCE INFORMATION ^

This function calls:
This function is called by:
  • slguidstr SLGUIDSTR Converts a guid to a string

SOURCE CODE ^

0001 function b = slisguid(v)
0002 %SLISGUID Judges whether the input can represent a GUID
0003 %
0004 % $ Syntax $
0005 %   - b = slisguid(v)
0006 %
0007 % $ Description $
0008 %   - b = slisguid(v) judges whether the input v conforms to the
0009 %     matlab representation of GUID (1 x 16 uint8 array).
0010 %
0011 % $ History $
0012 %   - Created by Dahua Lin, on Aug 12nd, 2006
0013 %
0014 
0015 b = isa(v, 'uint8') && isequal(size(v), [1 16]);

Generated on Wed 20-Sep-2006 12:43:11 by m2html © 2003

Contact us at files@mathworks.com