Convert graph figure to equation
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Adam Danz
il 20 Gen 2023
@collegestudent I edited your question to run your code so that it produces the plot.
Risposta accettata
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!