Hidden gems in Matlab's toolboxes
Show older comments
The function uisetcolor is very useful, but not easy to find. docsearch color found it at least under over 700 of other matches in R2009a and in 2011b it is found as 22th result when sorted for the relevance. But tricks like docsearch set ui color do not work and if a user has a lot of toolboxes, it is unlikely that he reads the complete documentation to find it by accident.
Do you know more such documented gems, which are hard to find, e.g. due to missing cross links in the "see also" lines? How did you find them?
Undocumented gems, which I did not mean here, are investigated and discussed at http://www.undocumentedmatlab.com/.
1 Comment
dpb
on 28 Aug 2013
I had some but lost them and now I can't find them again... :)
Accepted Answer
More Answers (1)
Sean de Wolski
on 13 Dec 2013
Edited: Sean de Wolski
on 13 Dec 2013
Jan, if you really like uisetcolor, another one which I just learned about is inspect:
figure;
h = uicontrol('Style','pushbutton',...
'Units','normalized',...
'Position',[0.1 0.1 0.3 0.5],...
'String','Push Me!',...
'Callback',[]);
inspect(h)
Categories
Find more on Live Scripts and Functions 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!