Error using get command

4 views (last 30 days)
Niraj
Niraj on 5 Feb 2014
Answered: Sean de Wolski on 5 Feb 2014
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

Answers (1)

Sean de Wolski
Sean de Wolski on 5 Feb 2014
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!