Know Formula used in function Matlab
2 次查看(过去 30 天)
显示 更早的评论
Good morning everyone!
I'm developing C++ software for my project using 3d accelerometer/gyroscope MPU6050, and I would like to know the formula used by Matlab for a general function__, let's say the " source code" that explain the math behind the objects functions, for example the function interp3
Of course the same is for other functions used.
Thank you very much for your attention! Have a nice day, FC
0 个评论
采纳的回答
Steven Lord
2017-12-14
Many of the functions in MATLAB are implemented as MATLAB function files. For those, you can read the code. The interp3 function falls into this category.
For built-in functions like fft or sin, we don't distribute the source code. If you want to see how those functions are implemented, your first step is to go here.
2 个评论
Steven Lord
2017-12-14
If they are implemented as a MATLAB function, you can edit them. Just be careful not to modify them.
Depending what you're trying to do and what functions you need to use, you might find the MATLAB Coder product useful to generate code. The documentation indicates interp3 is supported for code generation, though the end of the interp3 documentation page lists some limitations.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!