Effacer les filtres
Effacer les filtres

How can i find with a simpe and easy code the zero crossing of a function?

1 vue (au cours des 30 derniers jours)
Jessie Bessel
Jessie Bessel le 23 Oct 2017
Réponse apportée : KSSV le 24 Oct 2017
Let's say that I have a sinus wave and i want to find and plot the zero crossing for that function.How can i do that, with a simple code?
  1 commentaire
John D'Errico
John D'Errico le 24 Oct 2017
Why not read the help for fzero? You might even find an example in there, rather than asking someone to re-write the documentation for fzero.
doc fzero

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 24 Oct 2017
t = linspace(0,2*pi,5000) ;
y = sin(t) ;
figure
hold on
plot(t,y) ;
%%get zeros
tol = 10^-3 ;
idx = abs(y-0)<=tol ;
plot(t(idx),y(idx),'*r') ;
%%using fzero
fun = @sin ;
x = fzero(fun,[0 2*pi]) ;

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by