why inputname() does not show any results when for example "objname(1)" is used as input name.

6 views (last 30 days)
If I have a object named 'objname' and its has N-field or elements inside. I can safely call the function with 'objname(1) or objname(2) etc'. 'inputname()' function gives output when just 'objname' is used as input arg. It fails if 'objname(1)' is used as input arg. Any suggestion ?

Answers (2)

Niraj Gadakari
Niraj Gadakari on 29 Dec 2017
Please note that "inputname" function is used to display variable name of the function input.
Also, you cannot call "inputname" from the MATLAB command prompt or in a script you call from the command prompt.
Please refer to the this link for examples on using the "inputname" function

Maniraj M
Maniraj M on 8 Jan 2018
Thanks for your interest. Are there any other way, we can grap what we supply as input for function?
For example, if my function name is 'myfunctionname', and I supply an object name as first input argument with additional argument as follows.
myfunctionname(myobjectnamexy(1),[1,5],data_date);
Will there be any option to grap exactly the phrase that we type as input. In the present case 'mybojectnamexy(1)'
May be some option which is not know to me. I guess nothing, otherwise your might have suggested !

Categories

Find more on Graphics Object Programming 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!