Check if matrix A is nilpotent.
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers323
Suggested Problems
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1329 Solvers
-
Return unique values without sorting
1023 Solvers
-
489 Solvers
-
728 Solvers
-
Find the Oldest Person in a Room
21265 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!
May I ask what is the definition of Nilpotent matrix. I suppose that is A^k =0 for some k? If I am right, then 0 must be an eigenvalue of A, then there is some issues for the test problems.
@Ling Liang , take some tolerance while checking the equality of eigen value with zero.
nice one!
This needs some test cases with matrices that have zero eigenvalues but are not nilpotent.