How do I read in a text file (CREATED FROM BINARY IMAGE OF ROWS-420 AND COLUMNS 680) and sort it by a ROW

조회 수: 1 (최근 30일)
I created a file from binary image which consists of 420 rows and 680 columns, in which I am trying to read and then sort by row 1 and then by row 2,etc.....
i have to calculate number of 1 in each row..
can anyone please suggest the ,matlab code.
Thanks in advance.

채택된 답변

Bhaskar R
Bhaskar R 2020년 2월 24일
x = logical(randi([0,1], 420, 680 )); % assumed that x is your extracted data from the text file
x_sorted = sort(x, 2); % sorted array
x_1_count = sum(x, 2); % counted number of 1's in each row
  댓글 수: 2
Bhaskar R
Bhaskar R 2020년 2월 24일
편집: Bhaskar R 2020년 2월 24일
you can read data from text file as
f= fopen('your_text_file.txt', 'r');
x = textscan(f, repmat('%d', 1, 680), 'CollectOutput', 1, 'Delimiter', ',');
x = x{1};
fclose(f);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by