Why does my workspace does not take the values but just take the variables?
2 views (last 30 days)
Show older comments
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 Comments
Answers (0)
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!