Problem 2104. construct matrix with identical rows

Input a row vector such as x=1:10. Now we need to construct a matrix with L rows,of which every row vector is a copy of x.

Example

 L = 5

The resulting answer is:

 [1:10;
  1:10;
  1:10; 
  1:10;
  1:10]

Solution Stats

64.99% Correct | 35.01% Incorrect
Last Solution submitted on Jul 05, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers193

Suggested Problems

More from this Author1

Community Treasure Hunt

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

Start Hunting!