how to formulate logical matrix in a loop?
显示 更早的评论
i am having a matrix and want to separate them in the depending on its value
A=[1,2,3,4,5,6,7,8,9,10]
expected result are
idx1=[1,0,0,0,0,0,0,0,0,0] % for 1
...
idx10=[0,0,0,0,0,0,0,0,0,1] % for 10
采纳的回答
更多回答(1 个)
madhan ravi
2018-10-24
编辑:madhan ravi
2018-10-24
A=[1,2,3,4,5,6,7,8,9,10]
RESULT = zeros(1,numel(A));
RESULT1= RESULT;
for i = 1:numel(A)
idx(i)=A(i)==1;
idx1(i)=A(i)==10;
end
RESULT(idx) = A(idx)
RESULT1(idx1) = A(idx1)
10 个评论
madhan ravi
2018-10-24
No need to use logical indexing , see the above illustration
Shubham Mohan Tatpalliwar
2018-10-24
madhan ravi
2018-10-24
See the edited answer ,problem solved!
Shubham Mohan Tatpalliwar
2018-10-24
编辑:Shubham Mohan Tatpalliwar
2018-10-25
madhan ravi
2018-10-24
编辑:madhan ravi
2018-10-24
hows this related to the question??? what did you do in the above comment?
Shubham Mohan Tatpalliwar
2018-10-25
编辑:Shubham Mohan Tatpalliwar
2018-10-25
madhan ravi
2018-10-25
I know but you don’t have Use a loop
madhan ravi
2018-10-25
A=[1,2,3,4,5,6,7,8,9,10]
idy=zeros(1,length(A));
for i=1:1:10
idx22=find(A >=(i) & A<(i+1));
idy(i,idx22)=1;
end
madhan ravi
2018-10-25
what do you mean by the above code?
madhan ravi
2018-10-25
What should be the result after the loop?
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!