trying to make my curve smooth instead of at a point. any insight will help. thank you

 Respuesta aceptada

Ameer Hamza
Ameer Hamza el 22 de Mzo. de 2020

0 votos

You are making graph of . It is expected to be pointy. You can make graph of some other function like
f = @(x,k) exp(-k*x.^2);
which will have smooth peak.

1 comentario

Image Analyst
Image Analyst el 22 de Mzo. de 2020
Try smoothdata() or conv():
signal = conv(signal, ones(1, 30)/30, 'same');
This will blur it out and smooth it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Productos

Preguntada:

el 22 de Mzo. de 2020

Comentada:

el 22 de Mzo. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by