How would i store data into a vector

28 visualizaciones (últimos 30 días)
Feliciano Döring
Feliciano Döring el 16 de Abr. de 2018
Comentada: Feliciano Döring el 16 de Abr. de 2018
What i want to do is create a vector with only 1's that has a varying size depending on how i want it to be, since i know dynamically creating variables is not good i thought about creating a matrix of zeroes and storing the values i want in it, how would i do that? Also if there is another way of doing it please help.

Respuesta aceptada

David Fletcher
David Fletcher el 16 de Abr. de 2018
Editada: David Fletcher el 16 de Abr. de 2018
numElements=10;
%Create 1x10 row vector filled with zeros
rowVector=zeros(1,numElements)
%Create 1x10 column vector filled with ones
colVector=ones(numElements,1)
colVector(5)=10 %Store the value 10 in the fifth element of colVector
rowVector(2)=22 %Store the value 22 in the second element of rowVector
  1 comentario
Feliciano Döring
Feliciano Döring el 16 de Abr. de 2018
Perfect, thanks! I didn't know you could use 'ones' likes 'zeroes'

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing 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