Highlights
팔로우


설문 종료

설문

Which of the following produces a false value?

isempty( [ ] )
10%
isempty( { } )
13%
isempty( '' ) % 2 single quotes
13%
isempty( "" ) % 2 double quotes
24%
c = categorical( [ ] ); isempty(c)
18%
s = struct("a", [ ] ); isempty(s.a)
22%
추천 수: 1324

the cyclist
the cyclist 2024년 4월 10일
First one of the quizzes I've missed (even though I use strings quite a lot). That was at least my second choice.
My (faulty) reasoning was that the category "empty set" might not be empty.
@goc3 has left me with an empty feeling inside on this one.
DGM
DGM 2024년 4월 2일
I admit, I had to actually double-check that. I never use strings, but I kind of expected the attack to come from my blind spot.
Rik
Rik 2024년 4월 2일

My thought process was similar, although I also never use categorical.

Dyuman Joshi
Dyuman Joshi 2024년 4월 2일
Think of it like this -
What is the size of "12345"
What about "1234"
Now "123"
Then "12"
and "1"
Finally ""
(Credits to @Stephen23)
DGM
DGM 2024년 4월 2일 (2024년 4월 2일에 수정됨)
The way I thought about it was more like
What is the size of ["A" "B"]?
What about ["A" ""]?
... which really isn't all that different. Just reinforcing the notion of what a scalar string looks like.

태그

아직 태그를 입력하지 않았습니다.