How to count elements in array until criteria is met and output number of elements?

5 次查看(过去 30 天)
I have an array documenting states of a system and need to find system active duration.
An array looks something like
[1 1 1 1 2 2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 1 1 1 2 2 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5]
Each integer is the system state output from the controller. How can I create a method to count the number of elements in the array until the array becomes 5 (shutdown), repeat counting for the next system cycle, and output the duration (number of elements) of each cycle independently?

回答(2 个)

Image Analyst
Image Analyst 2022-3-28
Try using regionprops(), if you have the Image Processing Toolbox (type ver to check)
v = [1 1 1 1 2 2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 1 1 1 2 2 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5];
v5 = v == 5;
% Find starting locations and durations
props = regionprops(v5, 'PixelList', 'Area');
for k = 1 : length(props)
startingLocations(k) = props(k).PixelList(1,1);
end
startingLocations % Echo to command window
startingLocations = 1×2
33 58
durations = [props.Area] % How many 5's are in each run of 5's.
durations = 1×2
4 3
  4 个评论
Image Analyst
Image Analyst 2022-3-28
Well that gets you the number of non-5 counts though.
By the way, take a look at splitapply(), groupsummary(), and findgroups(). They are handy functions to know about.

请先登录,再进行评论。


Matt J
Matt J 2022-3-28
编辑:Matt J 2022-3-28
Download this,
Then,
array = [1 1 1 1 2 2 2 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 1 1 1 2 2 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5];
G=groupTrue(array~=5);
[~,~,durations]=groupLims(G,1)
durations =
32 21
  2 个评论
Nicholas Kavouris
Nicholas Kavouris 2022-3-29
Can this function be used for multiple conditons? Also reading your examples does not include the groupLims fcn
Matt J
Matt J 2022-3-29
Can this function be used for multiple conditons?
You mean like this?
G=groupTrue(array~=5 & array~=2);
The argument to groupTrue can be any logical vector.
Also reading your examples does not include the groupLims fcn
Now you have one!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by