Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Arrayfun - for conversion

1 回表示 (過去 30 日間)
Damiano Capocci
Damiano Capocci 2018 年 1 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I want to replace for loop with arrayfun but i don't have idea. In this case there is a particular dependence the two foor's. Every element X(k+1) dependes from X(k), X(k-1),.....X(k-limit). The presence of min() function makes the index k-p always positive.
X(1)= first_step;
for k=1:length_1
for p=0:min(k-1,length_2)
X(k+1)=X(k+1)+j(p+1)*X(k-p)
end
end
My aim is to fit this code for GPU computing

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by