Reshaping a Char Array

14 次查看(过去 30 天)
Jack Gallahan
Jack Gallahan 2020-10-16
Hi,
I am currently working on a Project where I need to order a Char Array like shown below
A = ['12';'12';'12';'12';'12';'12';'12';'12';'34';'34';'34';'34';'34';'34';'34';'34';'56';'56';'56';'56';'56';'56';'56';'56';'78';'78';'78';'78';'78';'78';'78';'78';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'DD';'DD';'DD';'DD';'DD';'DD';'DD';'DD'];
I want to re-arrange the char array like:
'1234'
'1234'
'1234'
'1234'
'1234'
'1234'
'1234'
'1234'
'5678'
'5678'
'5678'
'5678'
'5678'
'5678'
'5678'
'5678'
'AABB'
'AABB'
'AABB'
'AABB'
'AABB'
'AABB'
'AABB'
'AABB'
'CCDD'
'CCDD'
'CCDD'
'CCDD'
'CCDD'
'CCDD'
'CCDD'
'CCDD'
What is the best way to do that? I tried using reshape function but it doesn't seem to work for this case?
Thanks in advance.

采纳的回答

Rik
Rik 2020-10-16
This should do it:
A = ['12';'12';'12';'12';'12';'12';'12';'12';'34';'34';'34';'34';'34';'34';'34';'34';'56';'56';'56';'56';'56';'56';'56';'56';'78';'78';'78';'78';'78';'78';'78';'78';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'DD';'DD';'DD';'DD';'DD';'DD';'DD';'DD'];
B=mat2cell(A,ones(size(A,1),1),2);
B=reshape(B,8,[]);
part1=B(:,1:2:end);part1=part1(:);
part2=B(:,2:2:end);part2=part2(:);
B=cell2mat([part1 part2]);
  1 个评论
Jack Gallahan
Jack Gallahan 2020-10-17
Also is this the most efficient way to do this?
Because I have 134,217,728 Bytes each is 2 chars converting mat2cell and back takes to much time and memory. Sometimes matlab gives Out of Memory error. Is there another way?

请先登录,再进行评论。

更多回答(1 个)

Ameer Hamza
Ameer Hamza 2020-10-16
Something like this
A = ['12';'12';'12';'12';'12';'12';'12';'12';'34';'34';'34';'34';'34';'34';'34';'34';'56';'56';'56';'56';'56';'56';'56';'56';'78';'78';'78';'78';'78';'78';'78';'78';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'AA';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'BB';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'CC';'DD';'DD';'DD';'DD';'DD';'DD';'DD';'DD'];
idx = find([1; diff(A(:,1))]);
B = reshape(string(A), diff(idx(1:2)), []);
B = B(:,1:2:end) + B(:,2:2:end);
B = char(B(:));
  6 个评论
Ameer Hamza
Ameer Hamza 2020-10-17
It appears to be working in that case too
A = [repmat('12', 256, 1); repmat('34', 256, 1); repmat('56', 256, 1); repmat('78', 256, 1); repmat('AA', 256, 1); repmat('BB', 256, 1); repmat('CC', 256, 1); repmat('DD', 256, 1)];
idx = find([1; diff(A(:,1))]);
B = reshape(string(A), diff(idx(1:2)), []);
B = B(:,1:2:end) + B(:,2:2:end);
B = char(B(:));
The only case it will fail is if the second letter changes and the first letter remain same, for example
A = ['12';'12';'14';'14';'56';'56';'78';'78';'AA';'AA';'BB';'BB';'CC';'CC';'DD';'DD'];
In that case, following modification
idx = find([1; any(diff(A),2)]);
works, which is a more general form of the line in my answer and work for the original input too.
Jack Gallahan
Jack Gallahan 2020-10-17
编辑:Jack Gallahan 2020-10-17
The problem is, original data is ADC values which varies continously thus I can not rely on value of first 4 bit and second 4 bit. Values might be '9C', '00','15','0E,'28'..... and so on. The numbers on my first post was just to show the placement of chars that is needed.

请先登录,再进行评论。

类别

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

产品

Community Treasure Hunt

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

Start Hunting!

Translated by