Return all substrings that are contained within braces ({}).
For example:
str = 'x = rho*x{-1} + (1-rho)*y{+1}';
when passed to the function, should return a cell with '-1' and '+1' as its contents.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers32
Suggested Problems
-
Find the numeric mean of the prime numbers in a matrix.
9154 Solvers
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15799 Solvers
-
Flip the main diagonal of a matrix
914 Solvers
-
MATCH THE STRINGS (2 CHAR) very easy
301 Solvers
-
Sum the real and imaginary parts of a complex number
145 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I polished up this problem and added more test cases.