이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
matlab.io.hdfeos.sw.dimInfo
네임스페이스: matlab.io.hdfeos.sw
차원의 크기
구문
dimlen = dimInfo(swathID,dimname)
설명
dimlen = dimInfo(swathID,dimname)
은 지정된 차원의 길이를 반환합니다.
이 함수는 HDF-EOS 라이브러리 C API의 SWdiminfo
함수에 대응합니다.
예제
import matlab.io.hdfeos.* swfid = sw.open('swath.hdf'); swathID = sw.attach(swfid,'Example Swath'); dimlen = sw.dimInfo(swathID,'GeoTrack'); sw.detach(swathID); sw.close(swfid);