Can I use as Input at Simulink a equation?
5 ビュー (過去 30 日間)
古いコメントを表示
Hello,
Can I use this equation as input at Simulink? I would appreciate any help.
Simulink block:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/152849/image.jpeg)
0 件のコメント
採用された回答
Walter Roberson
2015 年 12 月 24 日
Use a MATLAB Function Block, or an Interpreted MATLAB Block
5 件のコメント
Walter Roberson
2015 年 12 月 29 日
"Interpreted MATLAB Function
Supports only a single input and a single output port. Use a Mux block to combine the inputs and a Demux block to separate the outputs if you pass multiple signals into or out of these blocks."
For the Interpreted MATLAB Function, I am not at the moment sure whether it is permitted to name the input anything other than u. It might need to look something like,
sum( u(:,2).*cos(2.*pi.*u(:,3).*u(:,1)+u(:,4) )
But since this is a scalar result involving only values from your workspace, it is not clear to me why you do not just calculate the scalar in MATLAB ? Is your mention of a random number generator intended to be a hint that you want to try random phases? Keep in mind that if you use random numbers inside an algebraic loop then the calculation is not going to be differentiable and Simulink would not be able to calculate consistent values.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!