Borrar filtros
Borrar filtros

Replacing numbers in a matrix

1 visualización (últimos 30 días)
Maruf Hoque
Maruf Hoque el 16 de En. de 2017
Comentada: Maruf Hoque el 16 de En. de 2017
I'm fairly new to matlab. I have a matrix that is 1000 rows and 1 column of 0's. I want to replace the 400th and 900th 0's with numbers of my choosing. These numbers will change every time I run the script (in this case I want the numbers to be 0.3 and 0.9) but they will always be the 400th and 900th numbers. What would be the best way to do this?
If this can work, I plan on doing the same with a larger sized matrix (2,000,000 rows)
  1 comentario
Image Analyst
Image Analyst el 16 de En. de 2017
Since you're new, here's a comment on the two answers below. Stephen's is the simplest and most direct answer for your case of a column vector of ALL zeros. Mohammad's, while slightly more complicated, is the most general and will work in the case where you have some elements that are not zeros. Either approach will work for 2 million rows.

Iniciar sesión para comentar.

Respuestas (1)

Stephen23
Stephen23 el 16 de En. de 2017
Editada: Stephen23 el 16 de En. de 2017
MyArray(400) = 0.3;
MyArray(900) = 0.9;
  1 comentario
Maruf Hoque
Maruf Hoque el 16 de En. de 2017
if I have a list of 20 numbers that will change everyday but the location (400 or 900) will stay the same, is there a way of quickly entering everything in?

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by