Repeat numbers of X based on Y to produce Z
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
JL
el 12 de Ag. de 2019
Comentada: Star Strider
el 12 de Ag. de 2019
I have 2 matrices, X and Y, and using these 2 matrices I would like to produce a third one called Z.
X = [1; 2; 3; 4; 5;]
Y = [3; 1; 4; 2; 2;]
where in Z, the numbers in X are repeated based on X
Z = [1;
1;
1;
2;
3;
3;
3;
3;
4;
4;
5;
5;]
0 comentarios
Respuesta aceptada
Star Strider
el 12 de Ag. de 2019
Z = repelem(X, Y)
producing:
Z =
1
1
1
2
3
3
3
3
4
4
5
5
2 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Parallel Computing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!