Modify element in a matrix, row vector
2 views (last 30 days)
Show older comments
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 Comments
Answers (2)
James Tursa
on 7 Dec 2017
rowvector(rowvector>=0 & rowvector<=500) = 0;
1 Comment
Guillaume
on 7 Dec 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
on 7 Dec 2017
1 Comment
A.V. Satyanarayana
on 2 Sep 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
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!