Borrar filtros
Borrar filtros

How to plot PSD using data in excel?

12 visualizaciones (últimos 30 días)
razin akmal
razin akmal el 22 de Jun. de 2015
Comentada: razin akmal el 2 de Jul. de 2015
The data time and amplitude values are in an excel file. From that I wanted to plot PSD, Y-axis amplitude. X-axis frequency.How can I do in this in Matlab?

Respuestas (1)

Murali Krishna
Murali Krishna el 22 de Jun. de 2015
try this...
a=xlsread('test.xls','a1:a30');%time values
b=xlsread('test.xls','b1:b30');%amplitude values
plot(1/a,b);
test.xls is the excel file from which you have to read the data. you also have to specify the range of the data
  1 comentario
razin akmal
razin akmal el 2 de Jul. de 2015
it is not working. it just plot straight line graph as i wanted spectral graph.

Iniciar sesión para comentar.

Categorías

Más información sobre Spectral Estimation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by