Just change this:
to this:
Why? Let' have a closer look at your code. On this line:
I = all(cellfun(@(x) isempty(x) || (ischar(x) && all(x==' ')),raw),2);
cellfun() returns logical array same size as raw. At position of every empty cell or cell containing only spaces will be 1. Rest of elements will be 0.
Now we want to find fully blank rows. That means, in our logical array we have to find 'all ones' rows. And that's exactly what all() does. Second argument, number 2, is dimension to operate along. In our case, it says we want to get a column vector which tells us for each row if it is empty or not. B = all(A,dim) Determine if all array elements are nonzero or true. Tests elements along dimension dim. The dim input is a positive integer scalar.
Function any() works same way, but instead of determine if all array elements are nonzero or true it says if any of them are. (if there is at least one such element).
And finally, when we have column vector I - position of lines that are empty, we can delete them.
3 Comments
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515726
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515726
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515744
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515744
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515777
Direct link to this comment
https://la.mathworks.com/matlabcentral/answers/372588-import-from-excel-and-exclude-fully-blank-rows#comment_515777
Sign in to comment.