Chage elements of a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Berkay
el 30 de Ag. de 2022
Respondida: Chunru
el 30 de Ag. de 2022
I have created a matrix filled with ones with this;
Matrix = ones(5,4)
And I want to change every second element of the matrix with random values how can I do it?
0 comentarios
Respuesta aceptada
Chunru
el 30 de Ag. de 2022
Matrix = ones(5,4)
n = numel(Matrix);
Matrix(1:2:n) = randn(size(1:2:n))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs 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!