Check whether the element of given row vector is a square or cube of consecutive numbers.
For example
Input x=[4 27 16 25 36 343]
Output y=true
Hence all elements are the square/cube values of number 2 3 4 5 6 7.
But if x=[36 49 121 81] then y=false. Because square/cube value for 8 is missing.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers19
Suggested Problems
-
Create a cell array out of a struct
2543 Solvers
-
Find the sum of the elements in the "second" diagonal
1204 Solvers
-
1188 Solvers
-
715 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
400 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!
Test suite update with an additional case.