Using accumarry and changing size of output

1 次查看(过去 30 天)
I am using the accumarray by using the following command on the first and second column of struct array. The first part of the code works good.
but the last two commands "went_from_to_countAge" and "went_from_to_probAge", does not work. any idea?
sequence = [1 1 1 1 2 2 2 2 2 3;...
1 1 1 1 1 1 1 1 1 1;...
1 1 1 1 1 1 1 1 1 1;...
1 1 1 1 1 1 1 2 2 2;...
1 1 1 1 1 1 1 1 1 1;...
2 2 2 2 2 2 2 2 2 2; ...
2 2 2 2 2 2 2 3 3 3; ...
2 3 3 3 3 3 2 2 2 2; ...
2 2 2 2 2 2 4 4 4 4]
% first part of the code
k = 1:size(sequence)
Age (k) = 25 + k
States = unique([sequence(:,k); sequence(:,k+1)]); % Find the unique rows based on the data in the first two columns.
[TF, fromstateAge] = ismember(sequence(:,k), States); % logical arrays
[TF, tostateAge] = ismember(sequence(:,k+1), States);
% second part of the code
went_from_to_countAge(:,k) = accumarray( [fromstateAge(:), tostateAge(:)], 1, []) % frequency of each unique number
went_from_to_probAge(k)= went_from_to_countAge ./ sum(went_from_to_countAge); % pribability of each unique number
  1 个评论
dpb
dpb 2021-2-21
Attach a .mat file with a sample of the struct and an example of what the desired output should be.
Almost impossible to visualize such complexity without having an example at hand.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-2-21
I am not clear if you are saying that you want different sizes to be returned? If so then you either need to use a cell array or else you have to pack the results into a larger array with padding.
If instead the point is that the size returned is sort of by chance but you want a fixed size, then change the place you used [] to give the required output size, such as
A = accumarray( [data(1).fromstate(:,2), data(1).tostate(:,3)], 1, [5 5]);
  7 个评论
susman
susman 2021-2-22
and this remains as it is?
went_from_to_countAge(:,k) = accumarray( [fromstateAge(:), tostateAge(:)], 1, []) % frequency of each unique number
went_from_to_probAge(k)= went_from_to_countAge ./ sum(went_from_to_countAge); % pribability of each unique number
Sorry for asking these stupid questions, as I already spend enough time to figure it out.
susman
susman 2021-2-22
Thanks alot, This worked for me
A{i} = accumarray( [data(1).fromstate(:,i), data(1).tostate(:,i)], 1, [5 5]);

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by