- What have you tried so far (show your code) and why do you think it isn't working? If you are getting error messages, cut and paste the entire error message (everything in red in the command window).
- How many of each "constant" should be in the final vector and what are the values of the "constants"? Just 0, 2, and 4?
- Why do you think you need a loop in the first place?
Loop to create a matrix with adding a constant value to a matrix
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Min
am 28 Aug. 2023
Bearbeitet: Dyuman Joshi
am 28 Aug. 2023
I am trying to make a loop that can save the iterations and add a contant value to a matrix.
For example,
I am very sorry for the poor picture :( hopefully there is an easy way to do this. Thanks
1 Kommentar
Les Beckham
am 28 Aug. 2023
You will need to provide more detail to get a good answer. For example:
Also, if you are just getting started with Matlab, I would highly recommend that you take a couple of hours to go through the free online tutorial: Matlab Onramp
Akzeptierte Antwort
Dyuman Joshi
am 28 Aug. 2023
Bearbeitet: Dyuman Joshi
am 28 Aug. 2023
You can either
- Preallocate a zero array and add elements using ones or repelem via indexing.
- Obtain the final matrix via repelem or repmat and display the sub-arrays for iteratively.
It is not recommended to dynamically grow arrays (refer to the preallocation link mentioned above for more information)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!