matlab function block Unable to call function?

5 ビュー (過去 30 日間)
cui,xingxing
cui,xingxing 2022 年 7 月 10 日
編集済み: cui,xingxing 2022 年 7 月 10 日
I'm trying to write some custom matlab program in simulink via a matlab function block, and the function in the block calls another function ”logSensorSubFcn“, but I get Error "undefined function myFcn for " input arguments of type "uint8". I tried to pass all arguments in with type "double", but it still gives me a similar undefined error. Here is the diagram of my model and the corresponding block function. (run in R2022a)
function myfun(tout,img,loc,ori) % MATLAB Function block programs
coder.extrinsic("logSensorSubFcn");
logSensorSubFcn(tout,img,loc,ori)
end
function logSensorSubFcn(tout,img,loc,ori)
Omitted...
end

採用された回答

cui,xingxing
cui,xingxing 2022 年 7 月 10 日
編集済み: cui,xingxing 2022 年 7 月 10 日
The matlab function block in simulink has a "new feature syntax restriction" compared to the matlab general function. If there is another called function, the called function should be placed in a separate m-file in the current working directory or in a directory that matlab recognises.
By the way, the control of writing programs in simulink has many restrictions compared to matlab and is not free and easy to use. For example, the processing of time series in simulink still uses the "timeseries" object, which has not been updated to the new "timetable" object function of the main matlab module in recent years.

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by