Convert graph figure to equation
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaire
Adam Danz
le 20 Jan 2023
@collegestudent I edited your question to run your code so that it produces the plot.
Réponse acceptée
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

