construct matrix with identical rows - MATLAB Cody - MATLAB Central

Problem 2104. construct matrix with identical rows

Difficulty:Rate

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

63.76% Correct | 36.24% Incorrect
Last Solution submitted on Apr 22, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
1
3

Problem Recent Solvers200

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!
Go to top of page