Modify Repmat function to concatenate array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Santos García Rosado
am 9 Feb. 2021
Kommentiert: Santos García Rosado
am 9 Feb. 2021
Hello MathWorks community.
I'm trying to concatenate an array of my own "n" times. The thing is that each time each time I concatenate the array, I want to multiply it by 1, 10, 20...
For example, lets say my initial array is [0,1,2,3,4]. And that n =3. Then the output should look like:
out = [0,1,2,3,4,0,10,20,30,40,0,20,40,60,80]
I was wondering if I could use the repmat fucntion in some way to get this don, or is this function only useful for concatanating the exact same array?
Thank's for the help!
Santos
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Monika Jaskolka
am 9 Feb. 2021
If you want to understand how repmat works, take a look at the syntax and description in the documentation page: https://www.mathworks.com/help/matlab/ref/repmat.html.
I was able to do this using a loop:
n = 3;
init = [0, 1, 2, 3, 4];
out = init;
for i = 1:n-1
factor = 10*i;
out = horzcat(out, init.*factor);
end
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!