How can I Plot spectrogramm with Excel File
이전 댓글 표시
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
채택된 답변
추가 답변 (3개)
houssem chedli
2017년 12월 7일
편집: Star Strider
2017년 12월 7일
댓글 수: 1
Star Strider
2017년 12월 7일
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
2017년 12월 7일
편집: houssem chedli
2017년 12월 7일
댓글 수: 3
Star Strider
2017년 12월 7일
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
2017년 12월 8일
Star Strider
2017년 12월 8일
My pleasure.
houssem chedli
2017년 12월 7일
0 개 추천
댓글 수: 1
Star Strider
2017년 12월 8일
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.
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

