Hello, I have a 1312x16 char column (2 bytes) which I need to split and store in two different 1312x8 (1 + 1 byte)
Data looks like:
0000000001110001
0000000001110101
0000000001111000
0000000001111100
0000000001111100
It should look like:
00000000
00000000
00000000
00000000
00000000
&
01110001
01110101
01111000
01111100
01111100

 채택된 답변

David Fletcher
David Fletcher 2018년 3월 15일
편집: David Fletcher 2018년 3월 15일

0 개 추천

Maybe I'm misunderstanding, but can't you just index it out:
col1=data(:,1:8)
col2=data(:,9:16)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

질문:

2018년 3월 15일

편집:

2018년 3월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by