mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
201 B
Matlab
10 lines
201 B
Matlab
10 years ago
|
fprintf('static uint8_t M_basis_seq_pucch[20][13]={\n');
|
||
|
for i=1:20
|
||
|
fprintf('\t\t{');
|
||
|
for j=1:12
|
||
|
fprintf('%d, ',y(i,j));
|
||
|
end
|
||
|
fprintf('%d},\n',y(i,13));
|
||
|
end
|
||
|
fprintf('\t\t};\n');
|