If a string is able to be entirely converted to an integer, return a "true" flag. Otherwise, return a false flag. For example:
a = '32';
isconvertible(a)
Would return logical(1)
a = '32f';
isconvertible(a)
Would return logical(0)
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers24
Suggested Problems
-
Maximum running product for a string of numbers
2258 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2585 Solvers
-
Back to basics 22 - Rotate a matrix
939 Solvers
-
Sum the 'edge' values of a matrix
414 Solvers
-
Matlab Basics - Switching Assignments
511 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The letter i is technically a complex number. So it should return true.
Rafael, the question askes for an integer specifically and not a number (let alone a complex number).
The test suite has been separated into individual test cases.