Encode and Decode Problem
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Neshant Thiru
il 6 Apr 2020
Commentato: Walter Roberson
il 6 Apr 2020
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 Commenti
Risposta accettata
Walter Roberson
il 6 Apr 2020
Modificato: Walter Roberson
il 6 Apr 2020
fread() returns a column vector by default.
c = fread(fid) .';
3 Commenti
Ameer Hamza
il 6 Apr 2020
Neshant, as Walter has written. You need to use .' operator after the fread() call
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Large Files and Big Data in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!