Which are the alternative codes of heaviside() function?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tufan
el 7 de Jun. de 2016
Comentada: GandaBerunda
el 18 de Jun. de 2022
Which are the alternative codes of heaviside() function?
0 comentarios
Respuesta aceptada
GandaBerunda
el 16 de Jun. de 2022
Hi Tufan,
Instead of using the heaviside() function, you can define your own function with a simple if elseif ladder. If the parameter is less than 0, you can return 0, at equal to 0, return 0.5 and greater than 0 return 1.
Hope it helps.
2 comentarios
GandaBerunda
el 18 de Jun. de 2022
Hi @Sam Chak
One simple approach without if else which I can think of is:
out=(x>0)+0.5*(x==0)
where out is the result, and x is the input
Más respuestas (0)
Ver también
Categorías
Más información sobre Install Products 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!