필터 지우기
필터 지우기

How to reshape into 1-D array??????????reply soon plz

조회 수: 1 (최근 30일)
Talat
Talat 2011년 5월 7일
Hello! i wana to reshape the following (16-bit)one column and 9-rows into 1-D array...
{ B=
0000000000110000
0000000000111101
0000000000111110
0000000001000000
0000000001000100
0000000001001001
0000000001001010
0000000001001110
0000000001011100
Bin_array=reshape(B,1,size(B, 1)*size(B,2))
This code return col-wise concatnated array, but i wana a reshaped array that concatnate row-wise, mean first row then second row then third and so on..... by considering it only one column. plzzz help me and make correction in given code
thanx
  댓글 수: 1
Oleg Komarov
Oleg Komarov 2011년 5월 7일
Don't get it wrong, B is a char array of 9 rows by 16 columns.

댓글을 달려면 로그인하십시오.

채택된 답변

bym
bym 2011년 5월 7일
Bin_array=reshape(B',1,[])'
  댓글 수: 1
Walter Roberson
Walter Roberson 2011년 5월 7일
That final ' should not be there as Talat does want a row output.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by