Hi how can id do this plot f = 5sin⁡(10pi*t) over one period

1 vue (au cours des 30 derniers jours)
Waleed Alrabghi
Waleed Alrabghi le 11 Fév 2016
Hi how can id do this plot f = 5sin(10pi*t) over one period

Réponse acceptée

Stephen23
Stephen23 le 11 Fév 2016
Modifié(e) : Stephen23 le 11 Fév 2016
>> N = 200;
>> t = linspace(0,2/10,N);
>> v = 5*sin(10*pi*t);
>> plot(t,v)
creates this:

Plus de réponses (1)

Waleed Alrabghi
Waleed Alrabghi le 11 Fév 2016
Thank you Stephen :)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by