How can i obtain a signal like this? i have some problem with the code.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Réponse acceptée
Jos (10584)
le 20 Oct 2017
T = 1 ;
n = 5/2 ;
t = linspace(0,n*T,1000) ;
x = sin(2*pi*t/T + pi) ;
q = t < T/2 | t > T ;
x(q) = 0 ;
plot(t,x,'b.-')
set(gca,'xtick',[0 .5 1 n],'xticklabel',{'0','T/2','T','5T/2'})
Plus de réponses (1)
Birdman
le 20 Oct 2017
Modifié(e) : Birdman
le 20 Oct 2017
Try this model. The sine wave is automatically plotted when you run and close the model.
3 commentaires
Jos (10584)
le 20 Oct 2017
Is it indeed a sine-wave between T/2 and 2*(T/2)? (Your curve suggests an ellipse-like curve)
Voir également
Catégories
En savoir plus sur Curve Fitting Toolbox 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!