Problem 823. Find similar/related functions
The help function can be useful for getting quick assistance on a particular function. For most built-in MATLAB functions, a portion of the help text lists similar or related functions ("See also ...").
Given a function name (string), return a cell array of the "See also" functions provided in the help text. If the input is not a real function or if no similar/related functions exist, return an empty cell array. The output should be all lowercase and in the order shown in the help text.
Examples
seeAlso('sum') = {'prod','cumsum','diff','accumarray','isfloat'}
seeAlso('fake') = {};
Solution Stats
Problem Comments
-
4 Comments
Show
1 older comment
J.R.! Menzinger
on 15 Nov 2012
The are more fucntions added to the "see also" of the function 'help' (maybe until the last release).
Dan
on 11 Mar 2013
Update test suite
Matthew Eicholtz
on 7 Jul 2013
Test suite has been updated and solutions rescored. My apologies for the inconvenience.
Rafael S.T. Vieira
on 29 Aug 2020
The test suite is outdated. The lookfor command no longer appears at the See-also section of the help command, and the See-also section of the command which has way more functions than listed in the test suite (MATLAB version R2020a).
Solution Comments
Show commentsProblem Recent Solvers3
Suggested Problems
-
1741 Solvers
-
3149 Solvers
-
279 Solvers
-
760 Solvers
-
368 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!