Given a string representing a function header, return the variable names used for the inputs and outputs.
For example if input string s is 'function [A,B] = myfun(c,d,f)', the input names are {'c';'d';'f'} and the output names are {'A';'B'};
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers19
Suggested Problems
-
Find the two most distant points
2958 Solvers
-
Numbers with prime factors 2, 3 and 5.
683 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
461 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
896 Solvers
-
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
266 Solvers
More from this Author5
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The last test got split into two, and it no longer works.
@Chris, the test suite has been corrected and your answer has been rescored.
Thanks, Dyuman