Is there a difference between declaring a class property "Dependent" versus "Dependent = true"?
    6 views (last 30 days)
  
       Show older comments
    
The title says it all.  The documentation doesn't make it clear whether or not there is a difference between
properties(Dependent)
    aProp
end
and
properties(Dependent=true)
    aProp
end
since it uses both seemingly interchangeably.  Is there a difference?
0 Comments
Accepted Answer
More Answers (1)
  Brendan Hamm
    
 on 12 Jul 2019
        There is no difference. For attributes which are binary (true/false) then just putting the attribute name is the same as toggling it from its default state.
0 Comments
See Also
Categories
				Find more on Software Development Tools in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

