Making each element of a row vector equal to zero
11 ビュー (過去 30 日間)
古いコメントを表示
Aftab Ahmed Khan
2014 年 5 月 27 日
コメント済み: Aftab Ahmed Khan
2014 年 5 月 28 日
Hi Everyone, I have a row vector (size 1*100) which contains randomly distributed 1s and 0s. How can i make each element of this row vector equal to zero using for loop ?
Sorry, if this is a very basic question !!
0 件のコメント
採用された回答
James Kristoff
2014 年 5 月 27 日
There are many ways to modify arrays in MATLAB. First, let's look at the for loop method:
given:
% this could be any size row vector
foo = [0,1,0,0,1,1,0];
% loop through all elements of foo
for( i = 1:length(foo) )
% set each element to 0
foo(i) = 0;
end
% this could be any size row vector
foo = [0,1,0,0,1,1,0];
% set foo equal to zero where foo equals 1
foo(foo == 1) = 0;
Also, in this simple case, you could just create a new row vector of all zeros:
% this could be any size row vector
foo = [0,1,0,0,1,1,0];
foo = zeros(size(foo));
3 件のコメント
James Kristoff
2014 年 5 月 27 日
There are also several options when dealing with Matrices. First, let me explain why you are seeing 1 1 1 when you execute the commands you mentioned.
% creates a 4x4 matrix
BS_channeltable = [1 1 0 1; 0 0 1 1; 1 0 1 0; 0 1 0 1];
let's split up this command to understand it better:
find(BS_channeltable(1,:))~= 0;
working from the innermost expression we have:
BS_channeltable(1,:)
which returns the first row (a 1x4 row vector) of the BS_channeltable matrix:
[1, 1, 0, 1]
find([1, 1, 0, 1])
which returns the indices of any non-zero elements specifically:
[1, 2, 4]
then you are comparing these indices with 0 using not-equals
[1, 2, 4] ~= 0
and since none of these indices are zero, you get an array of true values, represented as:
[1, 1, 1]
This means that you could either use the indices returned by the find function directly i.e.
% get the indices of any non-zero values
indices = find(BS_channeltable(1,:));
% replace these specific values with 0
BS_channeltable(1, indices) = 0
Alternatively you could use logical indexing to get around using the find function i.e.
% set the any values in the first row of BS_channeltable
% that are not equal to zero, to zero
BS_channeltable(1, BS_channeltable(1,:) ~= 0) = 0;
その他の回答 (2 件)
James Tursa
2014 年 5 月 27 日
編集済み: James Tursa
2014 年 5 月 27 日
You don't need a for loop. You can just do this:
row_vector(:) = 0; % Set all elements to 0, keep original variable type the same
2 件のコメント
James Tursa
2014 年 5 月 27 日
編集済み: James Tursa
2014 年 5 月 27 日
Not clear yet what you want. Are you trying to do this operation for only certain rows of a 2D matrix? If so, you can still do this without find and a for loop. E.g.,
BS_channeltable(1,:) = 0;
Is there some reason you need the indexes of these locations, other than to set their locations equal to 0?
George Papazafeiropoulos
2014 年 5 月 27 日
You can create a new vector with all zeros by typing the command:
new=zeros(1,100)
or by using a for loop:
for I=1:100
if v(I)==1
v(I)=0;
end
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!