Repetition of matrices - MATLAB Cody - MATLAB Central

Problem 44635. Repetition of matrices

Difficulty:Rate

A is a bold matrix: [1 2 3; 4 5 6;7 8 9]

Given an integer 'n' , a matrix B exists such that has n copies of A in the row and column dimensions

example: for n=2; B= [A A; A A]

For such a matrix B return the sum of all elements multiplied by the size of B i.e.

C=sum (all elements of B) * size(B)
  • Kindly note you will have to make the matrix A yourself *

Solution Stats

60.0% Correct | 40.0% Incorrect
Last Solution submitted on Dec 04, 2024

Solution Comments

Show comments
R2025a Pre-release highlights
This topic is for discussing highlights to the current R2025a Pre-release.
14
6

Problem Recent Solvers54

Suggested Problems

More from this Author29

Community Treasure Hunt

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

Start Hunting!
Go to top of page