フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to randn function compile to dll

1 回表示 (過去 30 日間)
Hojae Ahn
Hojae Ahn 2016 年 6 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
how to randn function compile to .dll?

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 6 月 22 日
Just put a call to it in the function that you compile with the MATLAB Compiler product or MATLAB Coder product. randn() is not on the list of functions that cannot be compiled, so just code your call and apply the Compiler or Coder product.
  2 件のコメント
Hojae Ahn
Hojae Ahn 2016 年 6 月 22 日
ex)
function y = test(m,s,n)
y = m + s * randn(1,n)
how to comoile this mfile?
Walter Roberson
Walter Roberson 2016 年 6 月 22 日
https://www.mathworks.com/matlabcentral/answers/164490-how-to-create-a-dll-from-a-matlab-code#answer_161232

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by