Encode and Decode Problem
조회 수: 4 (최근 30일)
이전 댓글 표시
clear, clc
a = [0 1 0 0 0 0 0 1];
b = [0 0 1 1 0 0 1 1];
c = xor(a,b);
%Write encoded message to a text file
fid = fopen('mycode.txt','w'); %Opens the file for write access
fwrite(fid,c);
fclose(fid);
disp(c);
%%
%Read and decode the encoded message from a text file
fid = fopen('mycode.txt','r'); %Open the file for read access
c = fread(fid);
fclose(fid);
a = xor(c,b);
disp(a);
I'm not sure why the code isn't displaying the decoded message, which should be [0 1 0 0 0 0 0 1]
댓글 수: 0
채택된 답변
Walter Roberson
2020년 4월 6일
편집: Walter Roberson
2020년 4월 6일
fread() returns a column vector by default.
c = fread(fid) .';
댓글 수: 3
Ameer Hamza
2020년 4월 6일
Neshant, as Walter has written. You need to use .' operator after the fread() call
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Mobile Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!