I need a power function for a boolean matrix.

2 views (last 30 days)
I need a power function for a boolean matrix.For example, boolean matrix
A = 0 1 0 1 0 0
0 0 0 0 1 0
0 1 0 0 0 0
1 1 0 0 0 0
0 0 0 1 0 1
0 0 0 0 0 0
And I need to calculate second power of A. Does matlab have such a function?

Answers (2)

Stephen23
Stephen23 on 27 Feb 2017
>> A ^ 2
ans =
1 1 0 0 1 0
0 0 0 1 0 1
0 0 0 0 1 0
0 1 0 1 1 0
1 1 0 0 0 0
0 0 0 0 0 0

Walter Roberson
Walter Roberson on 27 Feb 2017

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!