フィルターのクリア

Optimization! Divide a vector by each element of another vector!

3 ビュー (過去 30 日間)
M G
M G 2013 年 11 月 28 日
コメント済み: M G 2013 年 12 月 1 日
Dear all,
I would like to optimize my code which looks like this:
for n = 1:N
prt1(n,:) = exp(exp1/n^2);
end
exp1 is a vector of (1,2e4) and N = 2e4.
As you see the loop above works fine but the problem is heavy computation which takes extremely long time. Is there any way that I can vectorize n? By that I need to divide each element of exp1 by the 1st element of n and then 2nd, 3rd, ... nth element of n.
Any hint is appreciated :)
All the best
PS: Any good source in general for the MATLAB optimization??

採用された回答

Walter Roberson
Walter Roberson 2013 年 11 月 29 日
prt1 = bsxfun(@rdivide, exp1, (1:N).');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Optimization Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by