how to read spread sheet row by row iteratively ?
1 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I have an excel sheet that contains several rows with different lengths. I want to read these rows, using the command xlsread, iteratively ( in each iteration the code read one row) that is to avoid reading all the spreadsheet once which will generate matrix with NaN elements that will affect my calculation. I will set variable to hold the row and clear this variable after each calculation.
Thanks
0 个评论
采纳的回答
Walter Roberson
2015-11-8
Yes, it is possible to specify a Range that is a single row. You would want to use xlsread1 from the File Exchange to improve the speed -- though I understand that in R2015b they do something similar natively.
But there is another way:
num = xlsread('TheFileName.xls');
num_by_line = mat2cell(num, ones(1,size(num,1)), size(num,2));
trimmed_lines = cellfun(@(C) C(~fliplr(cumprod(fliplr(isnan(C))))), num_by_line, 'Uniform', 0);
Now trimmed_lines is a cell array of numeric vectors, one entry per row, in which all the trailing NaN have been removed.
A question would be whether you want the same thing to happen to leading NaN.
Note: NaN also occur in the numeric form in places where strings occur. If you have strings that you want to preserve then the code gets more complex. Leading NaN can occur as row headers.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!