Modify element in a matrix, row vector
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a row vector and I want the value from 0 to 500 be all zero, how do I do this? Thanks you!
0 comentarios
Respuestas (2)
James Tursa
el 7 de Dic. de 2017
rowvector(rowvector>=0 & rowvector<=500) = 0;
1 comentario
Guillaume
el 7 de Dic. de 2017
Note that the fact that it is a row vector or even a vector is completely irrelevant. The same code would apply for a matrix.
Anh Dao
el 7 de Dic. de 2017
1 comentario
A.V. Satyanarayana
el 2 de Sept. de 2021
% Separate the rows for simplicity and to use elsewhere as below
y=[1 2 3;4 5 6;7 8 9]
y1=y(1,:)
y2=y(2,:)
y3=y(3,:)
%Just created the matrices of required dimension for demo. You may also
%extract the required files using row extraction operation
y1=(1:166500)
y2=randi(100,1,166500)
y3=randi(100,1,166500)
% In matlab the first element is 1 unlike in maths; so u can change it
% accordingly
y1(1,1)=0
y2(1,1:500)=0
y3(1,1:501)=0
Ver también
Categorías
Más información sobre Logical 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!