How to see matlab code for any inbuilt function
8 次查看(过去 30 天)
显示 更早的评论
I used bilstm layer. I want to see the code for modification. please guide.
0 个评论
采纳的回答
Dinesh
2024-1-29
Hi Shilpa.
If the source code is available publicly, then you can use the following command in the MATLAB command line:
>> edit <function_name>
It will open up the file where you can either see the documentation or the source code.
If it shows documentation, then it means that the source code is unavailable publicly. For example, if you try to use the "edit sort" command, then you will see something like the following:
7 个评论
Walter Roberson
2024-1-30
You would have to use the custom layers interface; https://www.mathworks.com/help/deeplearning/custom-layers.html in order to write custom code for something that operates like bilstmLayer
更多回答(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!