Problem 49597. Matrix Pattern 3
Find the pattern behind each element of the matrix.
mat_pattern(3) = [
1 0 1
0 1 0
1 0 1];
mat_pattern(2) = [
1 1;
0 0];
Solution Stats
Problem Comments
-
1 Comment
ChrisR
on 27 Dec 2020
See also Cody Problem 4.
Solution Comments
Show commentsProblem Recent Solvers77
Suggested Problems
-
Sum all integers from 1 to 2^n
15823 Solvers
-
Reverse the elements of an array
1038 Solvers
-
Count consecutive 0's in between values of 1
450 Solvers
-
Find the index of n in magic(n)
249 Solvers
-
492 Solvers
More from this Author180
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!