Borrar filtros
Borrar filtros

How to put "error function, erf(x)" in simulink

8 visualizaciones (últimos 30 días)
Raghav Moyade
Raghav Moyade el 5 de Mzo. de 2016
Respondida: Ugur Keskin el 19 de Sept. de 2017
How to put "error function, erf(x)" in simulink for processing an input signal. I tried to formulate in "matlab functions block" but was getting error.

Respuestas (1)

Ugur Keskin
Ugur Keskin el 19 de Sept. de 2017
This can be done with the block 'Matlab function' which can also be found in the 'User-Defined functions' library of Simulink.
Just insert the following in the m-funtion:
function y = fcn(u)
y = erf(u);
y will be the error function of u.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by