이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
This function is useful if numeric values from a structure array are to be extracted using the notion M = S.field] UNEMPTY makes sure that empty matrices in the structure do not affect the size of M.
S = unempty(C) sets all occurences of empty matrices in all fields of C to NaN.
[S,nc] = unempty(C) reports the number of changed fields in nc.
S=unempty(C,F) sets in a structure array all occurences of empty matrices for field F to NaN.
S=unempty(C,F,value) sets all occurences of empty fields to value.
Example:
S=[struct('f',1) struct('f',2) struct('f',[]) ];
disp([S.f]) % size is different from S
1 2
S = unempty(S);
disp([S.f]) % size is the same as S
1 2 NaN
인용 양식
Andreas (2026). UNEMPTY (https://kr.mathworks.com/matlabcentral/fileexchange/7223-unempty), MATLAB Central File Exchange. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 |
