Increassing an array by a random value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Róbert Straka
el 16 de Feb. de 2021
Respondida: Walter Roberson
el 16 de Feb. de 2021
Hello guys,
lets say I have 3 arrays and 3 random numbers that I use to increase elements in the 3 arrays. Something like this:
a = rand()*(2)-1;
b = rand()*(2)-1;
c = rand()*(2)-1;
X = [1...10];
Y = [11...20];
Z = [21...30];
Now the easiest way to increase the elements in arrays by those number would be:
X1 = X+a
Y1 = Y+b
Z1 = Z+c
My question is if there is a way to add those random numbers randomly, so it will alway choose a random number from a,b,c to every array
0 comentarios
Respuesta aceptada
Walter Roberson
el 16 de Feb. de 2021
a = rand()*(2)-1;
b = rand()*(2)-1;
c = rand()*(2)-1;
abc = [a,b,c]
X = [1:10];
Y = [11:20];
Z = [21:30];
XYZ = [X;Y;Z];
ridx = randi(3, size(XYZ))
XYZ = XYZ + abc(ridx);
X1 = XYZ(1,:)
Y1 = XYZ(2,:)
Z1 = XYZ(3,:)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!