Find similar/related functions - MATLAB Cody - MATLAB Central

Problem 823. Find similar/related functions

Difficulty:Rate
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

3.05% Correct | 96.95% Incorrect
Last Solution submitted on Jul 16, 2022

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8

Problem Recent Solvers3

Suggested Problems

More from this Author44

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!