Scale Matrix Dimensions by Factor
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a matrix that needs to be scaled in the horizontal, copying each row.
Ex:
[1 2 3]
[4 5 6]
Scale Columns only by Factor 3
[1 1 1 2 2 2 3 3 3]
[4 4 4 5 5 5 6 6 6]
How can I write a simple loop to perform this. Thanks!
0 commentaires
Réponse acceptée
Bruno Luong
le 16 Nov 2018
>> repelem([1 2 3],3)
ans =
1 1 1 2 2 2 3 3 3
>>
4 commentaires
Bruno Luong
le 16 Nov 2018
I think I understand now your incorrect MATLAB notation
>> repelem([1 2 3; 4 5 6],1,3)
ans =
1 1 1 2 2 2 3 3 3
4 4 4 5 5 5 6 6 6
>>
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!