Plotting frequency with different vector error
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to plot a frequency graph with the center at the origin but I keep getting the error that the two vectors are different lengths. Is there anyway to fix this?
3 Kommentare
Walter Roberson
am 9 Sep. 2020
What input are you using? When I tried in R2020a on Mac and used 'hello' as the ASCII input, I had no problem.
Antworten (1)
Amrtanshu Raj
am 11 Sep. 2020
Hi,
To get the desired shift so that the graph is symmetric about the origin, you can make the following changes in your code where you plot the ‘freq’ variable:
sz = length(freq)/2;
k = [-sz:-1,1:sz];
plot(k,abs(freq));
0 Kommentare
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!