Problem 733. Extract Built In Functions and Toolbox Functions from String or Function Handle

Created by Richard Zapor

Find the Built-In functions and Toolbox functions in either a string or a function handle.

Generate a string of alphabetized Built-In functions followed by alphabetized Functions.

Inputs:

fh=@(x)log10(x)+log2(x)+abs(x)

str='smooth3(x,y)-filter(x)+abs(n)+filter2(u)+sin(x)+numel(z)'

Outputs:

'abs log2 log10'

'abs filter numel sin filter2 smooth3'

Related to Cody_464

Tags

Problem Group

6 solvers submitted 22 solutions (3.67 solutions/solver).

Problem Comments