Reducing the number of for loops
Show older comments
How can I reduce the number of for loops in the code below:
l = find(lamda >= fmin & lamda <= fmax);
lam = lamda(l);
n = length(lam);
C = zeros(n,n,n,n);
for i = 1:n
for ii = 1:n
for iii = 1:n
for iv = 1:n
A = [data(l(i),1) data(l(i),2) data(l(i),3);data(l(ii),1) data(l(ii),2) data(l(ii),3); data(l(iii),1) data(l(iii),2) data(l(iii),3); data(l(iv),1) data(l(iv),2) data(l(iv),3)];
C(i,ii,iii,iv) = cond(A);
end
end
end
C(i,i,i,i) = mean2(C);
i
end
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!