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

1 visualización (últimos 30 días)
Hi how can id do this plot f = 5sin(10pi*t) over one period

Respuesta aceptada

Stephen23
Stephen23 el 11 de Feb. de 2016
Editada: Stephen23 el 11 de Feb. de 2016
>> N = 200;
>> t = linspace(0,2/10,N);
>> v = 5*sin(10*pi*t);
>> plot(t,v)
creates this:

Más respuestas (1)

Waleed Alrabghi
Waleed Alrabghi el 11 de Feb. de 2016
Thank you Stephen :)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by