Convert graph figure to equation
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
collegestudent
am 20 Jan. 2023
Kommentiert: Torsten
am 20 Jan. 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 Kommentar
Adam Danz
am 20 Jan. 2023
@collegestudent I edited your question to run your code so that it produces the plot.
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

