- using functions
- avoiding eval and evil eval wrappers (like str2num (for all you CODY players gaming the system!))
- preallocating arrays
- using integers as loop variables when they are used as an index
- avoid repeated computations
- avoid changing the class of a variable if possible
- etc.
How to improve computing in matlab?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, it is a general question, in my matlab code I used a lot of loops, and inner loops as well. The result is it cannot get a solution quickly.
I was told that VC is good at loop, but matlab is not, matlab is good at matrix computation. And if I used a lot of matrix calculation, choose matlab.
Is there some suggestions? Thank you!
0 件のコメント
採用された回答
Sean de Wolski
2012 年 6 月 12 日
MATLAB is fine with loops. It's been fine with loops for a very long time but yet still carries that mantra that "loops are bad". They're not. There are some steps you can take to ensure that loops are running at their finest such as:
(I'm sure Jan will be able to extend this list 10fold).
Moral of the story is: Don't avoid loops like the plague, avoid the bad things above like the plague.
3 件のコメント
Jan
2012 年 6 月 13 日
編集済み: Jan
2012 年 10 月 27 日
@Sean: The list includes the most important strategies already. Some further ideas:
- Process numerical data columnwise, because accessing the neighboring elements of the memory allows a faster caching. Examples:
X = rand(1e4);
tic; Y = sum(sum(X, 2), 1); toc % 0.19 sec, main work along the rows
tic; Y = sum(sum(X, 1), 2); toc % 0.17 sec, main work along the columns
- Reduce the number of arithmetic operations when dealing with arrays and scalars:X = rand(1e4); a = 5;Slow: Y = X + pi + 3 + a; This is (((X + pi) + 3) + a) => Three matrix operationsFast: Y = X + (pi + 3 + a); => One matrix operation
- Use PARFOR to employ more cores.
- FIND(STRCMP) is much faster than STRMATCH.
- Do not spend hours for optimizing code until it is so ugly, that you cannot debug it anymore, if it save some seconds of runtime only.
- Do not let the output of PROFILE confuse you: PROFILE disables the JIT-accelerations, such that Matlab looses its power to process loops efficiently. TIC/TOC is better to measure speed of loops.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!