Community Profile

photo

J J


Last seen: 4 years ago Active since 2018

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • First Review
  • Thankful Level 1

View badges

Feeds

View by

Question


How can I make this find function in a for loop run faster using vectorization?
%% Find Peaks of raw data tic if MinPeakDistance == 0 [y_enc, t_pks] = findpeaks(y_raw, freq_s, 'MinPeakProminence', Mi...

5 years ago | 1 answer | 0

1

answer

Question


How can I vectorize this find function?
for i=1:length(x) ind_1 = find(b <x(i), 1, 'last'); ind_2 = ind_1+1; x1 = b(ind_1); x2 = b(ind_2); y1 =...

5 years ago | 1 answer | 0

1

answer