Problem 49602. Matrix Pattern 4
Find the pattern behind each element of the matrix.
mat_pattern(1) = 1;
mat_pattern(3) = [
     1     2     3
     2     4     6
     3     6     9];
mat_pattern(4) = [
     1     2     3     4
     2     4     6     8
     3     6     9    12
     4     8    12    16];
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers91
Suggested Problems
- 
         
         1202 Solvers 
- 
         
         1516 Solvers 
- 
         Remove entire row and column in the matrix containing the input values 525 Solvers 
- 
         find the maximum element of the matrix 525 Solvers 
- 
         
         586 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!