How can I Plot spectrogramm with Excel File
Ältere Kommentare anzeigen
Dear all I Have a Excel sheet with a dimension 10082*36 the 10082 represent the Time and the 36 represent Supraharmonic frequency 2 kHz-150 kHz (columns: 2 kHz,4 kHz,6 kHz.......150 kHz=36columns) i Want Dislay this Excel-Sheet in Matlab With Spectrogramm Plot. All the Commands and Syntaxes in Matlab Documetation were for a wave file . i had already import the Data from Excel to Matlab %filename = 'Ladestation Mittelwert' %omega=xlsread(filename) %A=omega(1:10080,1:36) but now i don't know how i kann plot this Matrix(omega) in Spectrogramm Diagramm with x-axis represent the time (1:10080 a Week ) and the y-Axis represent the the Frequency from 2 kHz to 150 kHz Color in the Spectrogramm represent the Amplitude (Voltage Harmonic )in V or in Dbv i Want habe a plot like this Pic it very Helpful for when you can Help me i need this for my thesis thank you
Akzeptierte Antwort
Weitere Antworten (3)
houssem chedli
am 7 Dez. 2017
Bearbeitet: Star Strider
am 7 Dez. 2017
1 Kommentar
Star Strider
am 7 Dez. 2017
I am not certain what the problem could be, since I do not have your matrix. It is difficult to read the chart, however the spectrogram data corresponding to your ‘omega’ appear to be in decibels.
If your data are not already in decibels, try this:
A = 20*log10(abs(omega(1:10078,1:36)));%einlesen von erste Matrix Messwerte für Leiter 1
houssem chedli
am 7 Dez. 2017
Bearbeitet: houssem chedli
am 7 Dez. 2017
3 Kommentare
Star Strider
am 7 Dez. 2017
I have no idea what you are doing.
With respect to giving different colours to 1V, 2V and 4V, see the documentation on colormap (link).
houssem chedli
am 8 Dez. 2017
Star Strider
am 8 Dez. 2017
My pleasure.
houssem chedli
am 7 Dez. 2017
0 Stimmen
1 Kommentar
Star Strider
am 8 Dez. 2017
I just saw this now. (It should have been in a Comment, not an Answer.)
That could be caused by very frequent (dense) grid spacing.
After that surf plot, add this line:
set(gca, 'EdgeColor','none')
If the grid spacing is the cause, that should be the solution.
Kategorien
Mehr zu 2-D and 3-D Plots 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!

