MATLAB Object-Oriented Programming

(Joyce) #1

end
end
cl_out = cl_array(1:ii);
end


Find Property Attributes


Suppose that you have the following containers.Map object:


mapobj = containers.Map({'rose','bicycle'},{'flower','machine'});


Find properties with private SetAccess:


findAttrValue(mapobj,'SetAccess','private')


ans =


'Count' 'KeyType' 'ValueType' 'serialization'


Find properties with public GetAccess:


findAttrValue(mapobj,'GetAccess','public')


ans =


'Count' 'KeyType' 'ValueType'


See Also


Related Examples



  • “Find Default Values in Property Metadata” on page 16-20


See Also
Free download pdf