where to find resizeImage2D ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I searched the matlabroot, but do not find the function, and ' doc' and 'edit' command still find it.
so where to find resizeImage2D ?
![捕获asda.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/207137/%E6%8D%95%E8%8E%B7asda.png)
0 Commenti
Risposta accettata
Steven Lord
il 6 Mar 2019
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 Commenti
Steven Lord
il 7 Mar 2019
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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!