Borrar filtros
Borrar filtros

how to implement symbolic matlab function on simulink?

5 visualizaciones (últimos 30 días)
Fatma Abdullah
Fatma Abdullah el 17 de Oct. de 2017
Comentada: Walter Roberson el 2 de Nov. de 2017
im trying to implement the following function on matlab function on simulink but error 'syms is not supported for a stand alone code generation' occures
function fkt = fcn(c,p,k,N)
syms t
ft=p^(-c/2)*(c/2)*t.^((c/2)-1).*exp(-(t./p).^(c/2));
Ft=1-exp(-(t/p).^(c/2));
fkt=k*nchoosek(N/2,k)*(1-Ft)^(N/2-k)*(Ft)^(k-1)*ft
end
  2 comentarios
Nicolas Schmit
Nicolas Schmit el 18 de Oct. de 2017
Simulink works only with numerical data. Why do you need to use the Symbolic Toolbox in a MATLAB function?
Fatma Abdullah
Fatma Abdullah el 18 de Oct. de 2017
um working on paper to try to simulate complicated system with calculations of integration and convolution that are almost impossible to be evaluated in matlab.....um taking the easy way instead of complicated matlab programing

Iniciar sesión para comentar.

Respuestas (1)

Sean de Wolski
Sean de Wolski el 2 de Nov. de 2017
You can do this by putting syms inside of a function called by a MATLAB Function block where the inner function is flagged as extrinsic:
  5 comentarios
Fatma Abdullah
Fatma Abdullah el 2 de Nov. de 2017
i'm trying to generate code for standalone work, not in acceleration mode
Walter Roberson
Walter Roberson el 2 de Nov. de 2017
In that case, extrinsic is not going to work, unfortunately. You will need to use a MATLAB Function block for at least the nchoosek; perhaps it would be easier to put it all into a MATLAB Function block to do the
(c*k*t^(c/2 - 1)*exp(-(t/p)^(c/2))^(N/2 - k + 1)*nchoosek(N/2, k)*(1 - exp(-(t/p)^(c/2)))^(k - 1))/(2*p^(c/2))

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by