Problem 56453. Multiply each matrix element by its row index and add its column index.
Return a matrix the same size as the input, multiply each element by its row index and add its column index.
Example:
x = [ 1 2 3 ; 4 5 6 ; 7 8 9 ]
should return
y = [ 2 4 6 ; 9 12 15; 22 26 30 ]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers17
Suggested Problems
-
1044 Solvers
-
Project Euler: Problem 3, Largest prime factor
1642 Solvers
-
1666 Solvers
-
Getting the indices from a vector
11183 Solvers
-
839 Solvers
More from this Author5
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!