Comprehensive list of modifiers?
Show older comments
Wondering if there is a list of modifiers for each function. Such as scatter(x,y,'MarkerSize','5')
Working with the toPPT tool and am looking at all the location modifiers for figures etc. I want to know if there is a list of all these modifiers for every function in MATLAB.
Thanks
1 Comment
You can get a list for a given function (well, I obviously haven't tested it for all, but here with 'figure' for example) by doing something like
>> hFig = figure;
>> set( hFig )
Alphamap: {}
BusyAction: {'queue' 'cancel'}
ButtonDownFcn: {}
Children: {}
Clipping: {'on' 'off'}
CloseRequestFcn: {}
Color: {1×0 cell}
Colormap: {}
CreateFcn: {}
CurrentAxes: {}
CurrentCharacter: {}
CurrentObject: {}
CurrentPoint: {}
DeleteFcn: {}
DockControls: {'on' 'off'}
FileName: {}
GraphicsSmoothing: {'on' 'off'}
HandleVisibility: {'on' 'callback' 'off'}
InnerPosition: {}
IntegerHandle: {'on' 'off'}
Interruptible: {'on' 'off'}
InvertHardcopy: {'on' 'off'}
KeyPressFcn: {}
KeyReleaseFcn: {}
MenuBar: {'none' 'figure'}
Name: {}
NextPlot: {'new' 'add' 'replace' 'replacechildren'}
NumberTitle: {'on' 'off'}
OuterPosition: {}
PaperOrientation: {'portrait' 'landscape' 'rotated'}
PaperPosition: {}
PaperPositionMode: {'auto' 'manual'}
PaperSize: {}
PaperType: {1×26 cell}
PaperUnits: {'inches' 'centimeters' 'normalized' 'points'}
Parent: {}
Pointer: {1×17 cell}
PointerShapeCData: {}
PointerShapeHotSpot: {}
Position: {}
Renderer: {'painters' 'opengl'}
RendererMode: {'auto' 'manual'}
Resize: {'on' 'off'}
SelectionType: {'normal' 'open' 'extend' 'alt'}
SizeChangedFcn: {}
Tag: {}
ToolBar: {'none' 'auto' 'figure'}
UIContextMenu: {}
Units: {'inches' 'centimeters' 'characters' 'normalized' 'points' 'pixels'}
UserData: {}
Visible: {'on' 'off'}
WindowButtonDownFcn: {}
WindowButtonMotionFcn: {}
WindowButtonUpFcn: {}
WindowKeyPressFcn: {}
WindowKeyReleaseFcn: {}
WindowScrollWheelFcn: {}
WindowStyle: {'normal' 'modal' 'docked'}
Accepted Answer
More Answers (2)
Star Strider
on 9 Feb 2018
0 votes
There is.
At the end of the page, especially for graphics functions, a link to the object properties will be at the end of the page, usually under See Also.
Steven Lord
on 9 Feb 2018
If the function is part of a MathWorks product, the documentation for that function (if it is documented) is the most likely place such a list of recognized options will exist. For the scatter function you used as an example, type this command into MATLAB:
doc scatter
I recommend using your locally installed documentation instead of the online documentation if you're not using the latest release, as in that case the online documentation may describe options or functionality not available in your release because they are too new.
Categories
Find more on Lighting, Transparency, and Shading 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!