generate matrix by for loop
Show older comments
A=[1 -10 4
0 -2 7
5 1 9]
I need to get
A=[1 0 -10 0 4
0 0 -2 0 7
5 0 1 0 9]
by for loop
1 Comment
David Meissner
on 6 Jun 2022
I would look into "Indexing with a Single Index" here: https://www.mathworks.com/help/matlab/math/array-indexing.html
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements 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!