How can I Plot spectrogramm with Excel File
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (3)
houssem chedli
il 7 Dic 2017
Modificato: Star Strider
il 7 Dic 2017
1 Commento
Star Strider
il 7 Dic 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
il 7 Dic 2017
Modificato: houssem chedli
il 7 Dic 2017
3 Commenti
Star Strider
il 7 Dic 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
il 8 Dic 2017
Star Strider
il 8 Dic 2017
My pleasure.
houssem chedli
il 7 Dic 2017
0 voti
1 Commento
Star Strider
il 8 Dic 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.
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

