Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Matlab Code to C
3 ビュー (過去 30 日間)
古いコメントを表示
Dear memebrs
I have a question
what dose this Matlab code means in C ?
function [t1,t2, t0, n] = fcn(y, y1, y2)
Thanks in advance
0 件のコメント
回答 (2 件)
MechtEngineer
2014 年 6 月 18 日
Is the MATLAB code from a Simulink project? If so, you can find more information about the Simulink fcn User-Defined block here: http://www.mathworks.com.au/help/simulink/slref/fcn.html
1 件のコメント
Niklas Nylén
2014 年 6 月 18 日
The documentation of how functions are declared in Matlab is available here: http://www.mathworks.se/help/matlab/ref/function.html
In your case, fcn is the name of the function. y, y1 and y2 are the input variables. t1,t2, t0 and n are the output variables (return values).
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!