How can I vectorize or otherwise speed up this function?

1 次查看(过去 30 天)
I have a function intended to do some initial calculations on an array of test data collected during mechanical fatigue tests run under cyclic load control. It's formatted in 3 columns of time, position and load (each row is a single measurement) The datasets are huge... sometimes 20 million rows or more. Can anyone think of good ways to vectorize these FOR loops? The 2nd loop is especially inefficient, but I'm new to coding with vectors and am having trouble wrapping my head around it.
Thanks for any help or resources you can provide!
function [test,cycleposition] = fatigueimport(test)
% Get length of test and find derivative of load to count cycles
% test data is array with time, position, load in columns
cycle = zeros(length(test),1); %initiate cycle variable
cyclecount=1;
cycle(1)=1;
changeload = diff(test(:,3));
count = length(test)-1
for i=2:count
if and(changeload(i-1)>0,changeload(i)<0)
% tests for point where load changes from increasing
% (positive changeload) to decreasing (negative changeload) and
% increments cyclecount.
cyclecount=cyclecount+1
end
cycle(i)=cyclecount;
i=i+1;
end
test = [test,cycle]; % adds calculated cycle to original array
% Find position of greatest deflection for each cycle
count = max(test(:,4)) % count set to total number of cycles
cycleposition = zeros(count,1); % initiate vector to record deflection values
for i=1:count
cycleposition(i)=min(test(test(:,4)==i,2));
i=i+1;
end
end

采纳的回答

Matt J
Matt J 2018-1-18
编辑:Matt J 2018-1-18
function [test,cycleposition] = fatigueimport(test)
% Get length of test and find derivative of load to count cycles
% test data is array with time, position, load in columns
changeload = diff(test(:,3));
changes=[ 1 ; changeload(1:end-1)>0 & changeload(2:end)<0 ; 0];
cycle=cumsum(changes);
test=[test,cycle];
cycleposition=accumarray(cycle, test(:,2) , [],@min);
  2 个评论
emm0119
emm0119 2018-1-18
Thank you so much, this is perfection! What took hours now takes mere seconds.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by