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 Solvers23
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5799 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1993 Solvers
-
Reverse the elements of an array
1117 Solvers
-
274 Solvers
-
Check that number is whole number
5234 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.