How can I Plot spectrogramm with Excel File
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (3)
houssem chedli
el 7 de Dic. de 2017
Editada: Star Strider
el 7 de Dic. de 2017
1 comentario
Star Strider
el 7 de Dic. de 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
el 7 de Dic. de 2017
Editada: houssem chedli
el 7 de Dic. de 2017
3 comentarios
Star Strider
el 7 de Dic. de 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
el 8 de Dic. de 2017
Star Strider
el 8 de Dic. de 2017
My pleasure.
houssem chedli
el 7 de Dic. de 2017
0 votos
1 comentario
Star Strider
el 8 de Dic. de 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.
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

