Commit 429b9f42 authored by Сергей Сеткин's avatar Сергей Сеткин
Browse files

Upload New File

parent bf483599
No related merge requests found
Showing with 10 additions and 0 deletions
+10 -0
function out = deinterleaving(input,order)
%order = 6;
%input = [1 14 27 40 53 66 79 92 105 118 131 144 157 170 183 196 209 222 235 248 261 274 287 300 2 15 28 41 54 67 80 93 106 119 132 145 158 171 184 197 210 223 236 249 262 275 288 301 3 16 29 42 55 68 81 94 107 120 133 146 159 172 185 198 211 224 237 250 263 276 289 302 4 17 30 43 56 69 82 95 108 121 134 147 160 173 186 199 212 225 238 251 264 277 290 303 5 18 31 44 57 70 83 96 109 122 135 148 161 174 187 200 213 226 239 252 265 278 291 304 6 19 32 45 58 71 84 97 110 123 136 149 162 175 188 201 214 227 240 253 266 279 292 305 7 20 33 46 59 72 85 98 111 124 137 150 163 176 189 202 215 228 241 254 267 280 293 306 8 21 34 47 60 73 86 99 112 125 138 151 164 177 190 203 216 229 242 255 268 281 294 307 9 22 35 48 61 74 87 100 113 126 139 152 165 178 191 204 217 230 243 256 269 282 295 308 10 23 36 49 62 75 88 101 114 127 140 153 166 179 192 205 218 231 244 257 270 283 296 309 11 24 37 50 63 76 89 102 115 128 141 154 167 180 193 206 219 232 245 258 271 284 297 310 12 25 38 51 64 77 90 103 116 129 142 155 168 181 194 207 220 233 246 259 272 285 298 311 13 26 39 52 65 78 91 104 117 130 143 156 169 182 195 208 221 234 247 260 273 286 299 312]
Rows = 4*order;
a = reshape(input,Rows,13)';
out = a(:)';
end
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment