What should be the plot command?
Ältere Kommentare anzeigen
deltaSignal = abs(testSignal - referenceSignal);
percentageDifference = deltaSignal ./ referenceSignal; % Percent by element.
meanPctDiff = mean(percentageDifference); % Average percentage over all elements
If you can please tell me how does the plot command looks like for the code above.
1 Kommentar
Mischa Kim
am 30 Jan. 2014
What exactly do you want to plot and how?
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 30 Jan. 2014
Read the documentation about plot
doc plot
Look at this example
t=0:0.01:10
y1=sin(t)
y2=cos(t)
plot(t,y1,t,y2)
1 Kommentar
Priya
am 30 Jan. 2014
Kategorien
Mehr zu Multirate Signal Processing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!