Borrar filtros
Borrar filtros

How can I plot a sin function like this x=Acos(Pi*t/T)

1 visualización (últimos 30 días)
yujia
yujia el 20 de Sept. de 2014
Respondida: Image Analyst el 20 de Sept. de 2014
I have no idea how to put amplitude and T in my plot.
v(t)=Acos(πt/τ)Π(t/τ)
V(f)=(Aτ/2)[sinc(fτ-0.5)+sinc(fτ+0.5)]
I need to plot V(f)
  1 comentario
Image Analyst
Image Analyst el 20 de Sept. de 2014
Is τ the Greek letter tau? And is t time? And what is capital T and Π? Is Π the product function or a capital pi? And what values of f do you want to use?

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 20 de Sept. de 2014
Perhaps this:
tau = 1;
f = linspace(-3*pi, 3*pi, 800);
A = 10;
V = (A*tau/2) .* sinc(f*tau-0.5)+sinc(f*tau+0.5);
plot(f, V, 'b-', 'Linewidth', 3);
grid on;
xlabel('t', 'FontSize', fontSize);
ylabel('v', 'FontSize', fontSize);

Categorías

Más información sobre Labels and Annotations 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