Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to randn function compile to dll

1 Ansicht (letzte 30 Tage)
Hojae Ahn
Hojae Ahn am 22 Jun. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
how to randn function compile to .dll?

Antworten (1)

Walter Roberson
Walter Roberson am 22 Jun. 2016
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 Kommentare
Hojae Ahn
Hojae Ahn am 22 Jun. 2016
ex)
function y = test(m,s,n)
y = m + s * randn(1,n)
how to comoile this mfile?
Walter Roberson
Walter Roberson am 22 Jun. 2016
https://www.mathworks.com/matlabcentral/answers/164490-how-to-create-a-dll-from-a-matlab-code#answer_161232

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by