Info
此问题已关闭。 请重新打开它进行编辑或回答。
How can I get a matrix B of the indexes in a matrix A that satisfy the following —i representing index— A(i-1)>0 && A(i+1)<0?
1 次查看(过去 30 天)
显示 更早的评论
How can I get a matrix B of the indexes in a matrix A that satisfy the following —i representing index— A(i-1)>0 && A(i+1)<0?
Im ploting an oscillating graph, and would like to get indexes of rate of change closest to 0, in order to get the frequency.
0 个评论
回答(2 个)
Star Strider
2017-12-24
‘Im ploting an oscillating graph, and would like to get indexes of rate of change closest to 0, in order to get the frequency.’
If you want to find the indices of the zero-crossings of your data, this little utility function could help:
zci = @(v) find(v(:).*circshift(v(:), [-1 0]) <= 0); % Returns Approximate Zero-Crossing Indices Of Argument Vector
0 个评论
Roger Stafford
2017-12-25
B = find(A(1:end-2)>0 & 0>A(3:end)) + 1;
Note that the "+1" is necessary here. For example. if A(1)>0 and A(3)<0, we would want to get an index of 2 included in B, but without the "+1" 'find' would record it as an index of 1.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!