How could I write in a vector something in a position different to a given one?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Juan Manuel Hussein Belda
el 15 de Oct. de 2021
Comentada: Juan Manuel Hussein Belda
el 15 de Oct. de 2021
v = [1,2,3,4,5]
idx = 3;
What I would like to do is get v = [NaN, NaN, 3, NaN, NaN];
How could I do it?
0 comentarios
Respuesta aceptada
KSSV
el 15 de Oct. de 2021
v = [1,2,3,4,5];
idx = 3;
iwant = NaN(size(v)) ;
iwant(idx) = v(idx)
1 comentario
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!