Skip to content
Snippets Groups Projects
Commit 60289fff authored by Mark Winter's avatar Mark Winter
Browse files

Fix for dimension mismatch in MATLAB leversc plugin

parent bfed6034
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ classdef LBinProvider < matlab.net.http.io.MultipartFormProvider
for pidx = 1:count_packs
cend = min(cstart+chan_pack-1, size(im8,4));
pack_sz = [cend-cstart+1, size(im8,[1,2,3])];
pack_sz = [cend-cstart+1, size(im8,[2,1,3])];
clen = lbin_hdr_size + prod(pack_sz);
% Set up lbin parts headers (needs content-type and content-disposition)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment