I want to transmit an image using Simulink and USRP
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
function msg = genMsg
%#codegen
persistent msgBinRows msgBinCols msgBin;
coder.extrinsic('imread');
% count;
if isempty(msgBin)
%count = 0;
imgmatRows = 256;
imgmatCols = 256;
imgmat = zeros(imgmatRows,imgmatCols);
imgmat = imread('cameraman.tif');
imgvec = reshape(imgmat, 1, imgmatRows * imgmatCols);
msgBin = de2bi(imgvec, 'left-msb');
[msgBinRows, msgBinCols] = size(msgBin);
end
msg = reshape(double(msgBin).', msgBinRows*msgBinCols, 1);
When I run this code it produces the following error
Data 'msg' (#24) is inferred as a variable size matrix, while its specified type is something else
How can I fix this problem?
0 Kommentare
Antworten (1)
Walter Roberson
am 7 Feb. 2013
At the beginning, initialize
msg = zeros(256*256*8, 1);
Warning your de2bi() call really should specify "n".
0 Kommentare
Siehe auch
Kategorien
Mehr zu Communications Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!