How can i find any matlab function definition?
19 views (last 30 days)
Show older comments
hello everyone.. I am new to learn matlab.Can any one tell me how can i find function definition of any matlab function? and also i want to know is there any software available that converts matlab code to c code(specially for image processing codes)??
1 Comment
Answers (2)
Azzi Abdelmalek
on 16 Feb 2013
Edited: Azzi Abdelmalek
on 16 Feb 2013
- To find the definition of any Matlab function, just type in Matlab windows ommand:
help yourfunction
doc yourfunction
0 Comments
Image Analyst
on 1 Feb 2021
With some functions you can see the source code if you edit them. For example
>> edit mean2.m
though sometimes inside is just a call to a DLL and you can go no further.
The MATLAB Coder package will convert your MATLAB code to C code.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!