[Solved] Convert Matrix to Vector [closed]
Your problem is a very specific one. I don’t see how this will be of any use to anybody but yourself. There is no ‘one line solution’. There are many ways to approach indexing problems, I like to use scalar indexing when possible: Ncolumns = size(Matrix,1); Nblocks = floor(Ncolumns/4); %number of 4-line blocks (excluding the … Read more