Borrar filtros
Borrar filtros

filling matrix in matlab code

23 visualizaciones (últimos 30 días)
marwa hajji
marwa hajji el 12 de Oct. de 2021
Editada: marwa hajji el 13 de Oct. de 2021
how to filling matrix in matlab
  1 comentario
Jan
Jan el 12 de Oct. de 2021
I have a loop in my matlab program which gives me 10 successive values as results, and I want to fill these values in a row matrix of size [10]. how do I program the filling of these values in the matrix in matlab?

Iniciar sesión para comentar.

Respuestas (1)

Kevin Holly
Kevin Holly el 12 de Oct. de 2021
matrice = zeros(10);
for i=1:10
matrice(1,i)=i;
end
matrice
matrice = 10×10
1 2 3 4 5 6 7 8 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by