Question: IT HAS TO BE DONE WITH MATLAB Given the input inStr, give the Boolean output out indicating whether all the parentheses are balanced. Examples: If
IT HAS TO BE DONE WITH MATLAB

Given the input inStr, give the Boolean output out indicating whether all the parentheses are balanced. Examples: If inStr is'(()', the output is false. If inStr is '(xyz)(ab)' the output is true. If inStr is')(', the output is false. The string may include characters other than (and), but you should ignore them. Incidentally, this problem was inspired from the Rosetta Code site. Why not create a few problems of your own by poking around the tasks at Rosetta Code? [function out = isBalanced(inStr) out = false; end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
