フィルターのクリア

How to numericaly integrate in simulink-block "matlab function" block

1 回表示 (過去 30 日間)
Daniel Peters
Daniel Peters 2017 年 6 月 19 日
回答済み: Jatin Waghela 2017 年 6 月 22 日
Hello,
I'm trying to use "integral" function in "matlab function" in simulink. You can reduce the code to:
function f=fun(x)
coder.extrinsic('syms');
coder.extrinsic('integral');
xmin=0
xmax=1
k=@(x)x
syms x
f=integral(k, xmin, xmax)
end
So when I use this, the error following error occures: "Cannot pass an object of class 'function_handle' to MATLAB function 'integral'". When I try to put in the Function k itself into the integral the error stays the same. When I delete the "@(x)" the Error says that x is not defined.
Can you help me to make the integration work?
thank you

回答 (1 件)

Jatin Waghela
Jatin Waghela 2017 年 6 月 22 日
The code you provided seems to work fine for me when I run the code directly in MATLAB.
Please use the below command to ensure that there are no other functions names 'integral' what are being referred to instead of the correct 'integral' function.
which -all integral

カテゴリ

Help Center および File ExchangeModeling についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by