Why does my workspace does not take the values but just take the variables?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am trying to execute below code. I have a excel data which is 90.xlsx. and i am using the below code to import the data. And i wanted to find the peaks. After using the below code, at the workplace, it shows the 2 variables TIMESTEPS, XDATA with values. While for the peakvals, peaklocs and peaktime it just shows the variables but not the values. It shows []. How come it happens?
[TIMESTEPS,XDATA] = importfile('90.xlsx','Sheet1',2,1601);
createfigure1(XDATA, TIMESTEPS)
[peakvals,peaklocs] = findpeaks(XDATA, 'minpeakdistance',50, 'minpeakheight', 0.00001);
peaktime = TIMESTEPS(peaklocs);
Any help would be highly appreciated. Thanks!
3 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!