Convert graph figure to equation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
collegestudent
el 20 de En. de 2023
Comentada: Torsten
el 20 de En. de 2023
I am trying to write the equation of the graph and plot it. 

So far I have written this equation, however when I plot it, there is a point at (-3,-3) and I am not sure why. I need to plot it as a continuous time signal.
n = -6:6;
x = @(n) n.*((n>-4)&(n<=-2))+4*(n==-2)+(-2)*(n==2)+0*(n==4);
plot(n,x(n));
1 comentario
Adam Danz
el 20 de En. de 2023
@collegestudent I edited your question to run your code so that it produces the plot.
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

