how to identify empty , non-empty char matrix condition?
조회 수: 30 (최근 30일)
이전 댓글 표시
I have a matrix "A" with size 4x8 char and having values:
'01:04:00'
'01:03:00'
' '
'01:01:00'
I want to identify the index of empty char. I.e. 3rd one.
I tried,
% first one
A == ""
% second one
A == ''
% third one
isempty(A)
% forth one
isspace(A)
% fifth one
A == ' '
% sixth one
A == " "
% everything shows zero output.
Can anyone please help?
Any help will be greatly appriciated.
댓글 수: 0
채택된 답변
Stephen23
2022년 7월 18일
편집: Stephen23
2022년 7월 18일
M = [...
'01:04:00'
'01:03:00'
' '
'01:01:00'];
strcmp('',cellstr(M)) % CELLSTR removes trailing whitespace characters.
cellfun(@isempty,cellstr(M)) % CELLSTR removes trailing whitespace characters.
all(M==32,2) % match space character only.
all(M==' ',2) % match space character only.
all(isstrprop(M,'wspace'),2) % match any whitespace character.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!