Modify element in a matrix, row vector
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
James Tursa
il 7 Dic 2017
rowvector(rowvector>=0 & rowvector<=500) = 0;
1 Commento
Guillaume
il 7 Dic 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
il 7 Dic 2017
1 Commento
A.V. Satyanarayana
il 2 Set 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
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!