Error using get command

1 次查看(过去 30 天)
Niraj
Niraj 2014-2-5
Hi, I have made an object named player use to access my video files. When I am trying to access its properties using get, it shows me following error:
obj = player('test.seq');
get(obj,'FrameRate')
Error using get
Conversion to double from player is not possible.
however if I use only
obj.FrameRate
I am able to access the property. The matlab documentation for get says that we can use the get property to access the properties of the object. Then why am I getting such error?
All the properties in player is defined as public. Please help. Thanks

回答(1 个)

Sean de Wolski
Sean de Wolski 2014-2-5
obj.FrameRate
Is the preferred way to get the property. If you would like set and get to work like they do with graphics objects, have your class inherit from hgsetget.
In general, I wouldn't recommend this.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by