source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/lightspeed/@mutable/isfield.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

  • Property svn:executable set to *
File size: 340 bytes
Line 
1function tf = isfield(s,f)
2%ISFIELD True if field is in mutable structure.
3% isfield(s,'field') returns true if 'field' is the name of a field in the
4% mutable structure s.
5%
6% See also GETFIELD, SETFIELD, RMFIELD, FIELDNAMES.
7
8% Written by Tom Minka
9% (c) Microsoft Corporation. All rights reserved.
10
11tf = s.obj.containsKey(f);
Note: See TracBrowser for help on using the repository browser.