Output of a function varies in size for each iteration
1 次查看(过去 30 天)
显示 更早的评论
I am using the command "strfind" to find indicies where changes in my data occur i.e. my data changes from 0 to 1. For a vector (5400*1) this works fine and it accurateloy finds indices where jump from 0 to 1 takes place. But I have a matrix of size 5400*34, and each of the 34 columns have different places at which the jump of data occurs, for some jump occurs twice, for some once, for others none. The "strfind" command output obviously fails to deal with this problem. Any idea how to solve it?
0 个评论
采纳的回答
dpb
2022-5-9
编辑:dpb
2022-5-9
Probably as simple a solution as any is to return the indices where the change occurs with both row and column in a form that doesn't depend on the number...unless, of course, there are none globally.
[r,c]=find(diff(A)==1);
NB: You may want to do a "+1" to the above for the row since the difference vector is one element shorter than the original.
You then iterate over the values of c to find the rows for each column for which there is at least one transition as
rows=arrayfun(@(i)r(c==i),unique(c),'UniformOutput',false);
Of course, you can look for any one column as well by
rows=r(c==2);
will be the second column
更多回答(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!