The aim is to find if there is an operator inside a MATLAB function call in a formula. The input is a string and the output is a boolean which is true if the string contains at least one operator in a function call, and false otherwise.
For example:
'min(var1+var2,2)' => true
'min(1,2)+min(3,4)' => false
'min(min(1,2),3))' => false
'min(min(1,var1+2),3))' => true
'4*var1' => false, there is no MATLAB function
You can assume that all opening brackets are closed.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers7
Suggested Problems
-
Back to basics 3 - Temp Directory
384 Solvers
-
Back to basics 4 - Search Path
383 Solvers
-
I've got the power! (Inspired by Project Euler problem 29)
143 Solvers
-
Find the position of first minimum value in an integer array with numbers
185 Solvers
-
5833 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Difficult