Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Input = cell(Blocks,1);
  2.  
  3. V = cellfun(@(x) x(:), Input, 'un', 0);
  4.  
  5. Blks = size(Input,1);
  6.  
  7. V = cell(Blks,1);
  8.  
  9. for i = 1:Blks
  10. V{i} = Input{i}(:);
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement