for q = 1:length(maxtab2)
for r = 1: length(maxtab2{q})
for s = 1: length(replacewith)
if abs (maxtab2{q}(r) - replacewith(s)) ==1
maxtab2{q}(r) = replacewith(s);
end
end
end
end
maxtab2 is a list of cells, each containing 2 colums of numbers(up to 20 numbers each column).
length(maxtab2)=190 length(maxtab2{q}) would be up to 20
can anyone help me make the 3 loops more effecient please? It is taking way too long right now, Thanks!
here is the data for maxtab2, its just the content of 1 cell
{[705;4000]}
replacewith is a list of over 5000 variables. the code here chooses one of these 5000 variable and replace the corresponding maxtab2 (determined by the for loops) with the chosen variable from replacewith

2 Kommentare

Sven
Sven am 7 Dez. 2011
Andy, a couple of suggestions:
You've asked a few questions all about one program you have. The questions themselves all involve nested loops with various cells of arrays of numbers. The answers are generally ways to re-write your loops. However, you're only really providing enough information to look at your loop and try to re-write it. We never really see the full picture. It might very well be the case that the underlying data structure you have chosen means that these loops are required. If that's the case, maybe asking a bigger-picture question will help get a better answer. Try the following:
1. Upload a sample data set somewhere
2. Explain in words and code what you are trying to do *on the whole*, maybe even put in why.
I have a feeling from previous questions that some of your cells could be merged into matrices or something else in a way that would make your whole code faster AND your underlying data easier to manage.
Sean de Wolski
Sean de Wolski am 7 Dez. 2011
I agree with Sven. Why?
"Because the mathematician knew it was a good idea."

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 7 Dez. 2011

0 Stimmen

for s
if abs (maxtab2{q}(r) - replacewith(s)) ==1
maxtab2{q}(r) = replacewith(s);
end
end
I'm pretty sure this can be replaced with
maxtab{q}(r) = find(abs(maxtab{q}(r)-replacewith)==1,1,'last')
but this operation seems wierd to me. You're going to replace it with the value one less than it or one more than it, you're aware of this right?

9 Kommentare

Andy
Andy am 7 Dez. 2011
yes, because i am working on plots of a chromatogram, i need all the peaks to line up, so if they are one off, i choose the peak that is most common and put them all into that position
Andy
Andy am 7 Dez. 2011
maxtab{q}(r) = find(abs(maxtab{q}(r)-replacewith)==1,1,'last')
didnt work because replacewith is not a value, it is a matrix, so from the subtraction i actually get a whole list instead of one number
Sean de Wolski
Sean de Wolski am 7 Dez. 2011
If it is a matrix, then you're only running over part of it (unless it's a vector (1xn) or (nx1)).
You would have to change my above to:
maxtab{q}(r) = find(abs(maxtab{q}(r)-replacewith(1:length(replacewith)))==1,1,'last')
that's probably an oversight on my part from earlier
Andy
Andy am 7 Dez. 2011
its still giving me a bit matrix for the find part, so its saying:
??? In an assignment A(:)=B, the number of elements in A and B must be the same.
Sean de Wolski
Sean de Wolski am 7 Dez. 2011
I might be trying to get rid of both for-loops with that. Sorry. It would be much easier to visualize/test with sample data.
Andy
Andy am 7 Dez. 2011
how do i post the data? can i email it to you or something?
Sean de Wolski
Sean de Wolski am 7 Dez. 2011
A free data sharing website would be best. Or something we can copy and paste by editing your original question.
Andy
Andy am 7 Dez. 2011
which data do you need?
Andy
Andy am 7 Dez. 2011
i ended up using this: works well
for q=1:length(maxtab2)
for r = 1:length(maxtab2{q})
finding = abs(maxtab2{q}(r) - replacewith(1:length(replacewith)));
if ismember (1,finding)==1
maxtab2{q}(r)=replacewith(find(finding==1,1,'last'));
end
end
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Jerry
Jerry am 7 Dez. 2011

0 Stimmen

If this maxtab2 can be stored in a matrix. This whole thing can be done without iteration. But if it's a cell, I think it's pretty hard to speed it up since a lot of operations cannot be applied to cell, like "-"(minus), and "find".

1 Kommentar

Andy
Andy am 7 Dez. 2011
maxtab2 is a list of cells, and each cell contains two colums, one columns is x-axis coordinate, the other is y-axis coordinate

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by