Modify element in a matrix, row vector
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
James Tursa
2017-12-7
rowvector(rowvector>=0 & rowvector<=500) = 0;
1 个评论
Guillaume
2017-12-7
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
2017-12-7
1 个评论
A.V. Satyanarayana
2021-9-2
% 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
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!