Adding zeros in the empty places in a matrix.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
S Priya
el 12 de Nov. de 2021
Respondida: KSSV
el 12 de Nov. de 2021
A is a 252x1 matrix, and I have values of 1st 13th 25 th 73th 121th 109th 97th 61th row. and have to fill the remaining spaces with zeros. Please help me with it.
0 comentarios
Respuesta aceptada
KSSV
el 12 de Nov. de 2021
A = rand(252,1) ;
iwant = zeros(252,1) ;
idx = [1 13 25 73 121 109 97 61] ;
iwant(idx) = A(idx) ;
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!