How to Create/Modify for matrices or matrix
Show older comments
K=5
matA= [1 2 ..4 K]
matB=[matA matA matA matA matA]
matB=[1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5]
How to operate this equation matB?
Accepted Answer
More Answers (1)
Les Beckham
on 12 Apr 2022
Edited: Les Beckham
on 12 Apr 2022
K=5;
matA = 1:K
matB = repmat(matA, 1, K)
Categories
Find more on Simulation, Tuning, and Visualization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!