Covering some basic topics I haven't seen elsewhere on Cody.
Given a string, return true if it is a valid MATLAB variable name, but not a MATLAB keyword, false otherwise
Examples:
'foo' -> true
'while' -> false
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers337
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15781 Solvers
-
Remove any row in which a NaN appears
8770 Solvers
-
Find the alphabetic word product
3459 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1991 Solvers
-
645 Solvers
More from this Author39
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I appreciate this series of problems introduce me to new functions in MATLAB. Thanks!