where to find resizeImage2D ?
조회 수: 1 (최근 30일)
이전 댓글 표시
I searched the matlabroot, but do not find the function, and ' doc' and 'edit' command still find it.
so where to find resizeImage2D ?
댓글 수: 0
채택된 답변
Steven Lord
2019년 3월 6일
It is a function in the nnet.internal.cnnhost package directory. Its name is not resizeImage2D but nnet.internal.cnnhost.resizeImage2D. As the "internal" part of the package name indicates, you should not write code depending on the behavior or existence of this function in a future release.
According to the which function, this function is built-in and so you cannot read the code.
>> which -all nnet.internal.cnnhost.resizeImage2D
resizeImage2D is a built-in method % static method or package function
댓글 수: 4
Steven Lord
2019년 3월 7일
It's built-in and there is no help text for it. Don't write code that depends on it functioning a particular way or even it existing in a future release.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!