What does Out of range or non-integer values truncated during conversion to character mean and how to solve it?
2 次查看(过去 30 天)
显示 更早的评论
Warning: Out of range or non-integer values truncated during conversion to character.
> In cell.strcat at 55
In Testing_Automator_v4 at 27
Line 27-29:
[~,id_raw2] = unique(strcat(raw2(:,1), 'rows'));
get_motors_no_workbook2 = raw2(id_raw2,:);
get_motors_no_workbook2 = get_motors_no_workbook2(2:end,1);
0 个评论
回答(1 个)
Guillaume
2016-4-25
Your raw2 cell array contains numerical values in column 1. strcat interpret these values as character codes (e.g. it translates 65 into A) and is warning you that some of them are not valid character codes (because they're not integers or not in the valid range of integers).
Most likely, you didn't want to perform strcat on that column of the cell array. What are you trying to do?
Also suspicious is your passing of the 'rows' to strcat, wasn't this meant as a second argument to unique instead?
That is did you mean?
[~, id_raw2] = unique(raw2(:, 1), 'rows');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!