Borrar filtros
Borrar filtros

Why is my plot blank? (New to MATLAB)

1 visualización (últimos 30 días)
Daniel Spejcher
Daniel Spejcher el 22 de Nov. de 2019
Respondida: Erivelton Gualter el 22 de Nov. de 2019
for x = linspace(-pi,pi,.01)
S(x) = (2.*H(x))-1;
end
figure
plot(S(x),x,'-r*');
axis([-pi pi -3 3]);
title('S(x) vs. x');
xlabel('x');
ylabel('S(x)');
My assignment is dealing with the Fourier Series and the Heaviside Function and I am trying to plot S(x) vs. x but my plot is blank.

Respuestas (1)

Erivelton Gualter
Erivelton Gualter el 22 de Nov. de 2019
Try the following:
x = -pi:.1:pi;
for i=1:length(x)
S(i) = (2.*heaviside(x(i)))-1;
end
figure
plot(S,x,'-r*');
axis([-pi pi -3 3]);
title('S(x) vs. x');
xlabel('x');
ylabel('S(x)');

Categorías

Más información sobre Log Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by