Vectorizing nested for loop
6 次查看(过去 30 天)
显示 更早的评论
Hello everyone. Im kinda new to matlab, please help to vectorize this
for ii = 1:100
for jj = 1:100
func1(ii, jj);
func2(ii, jj);
end
end
func1 using data, generated by func2 on each step, so i cannot tear execution apart. Problem is speed, i need as much as i can, but profiler says tht my loop is taking most of time, so i've read vectorization part of help, tried meshgrid option, but it kinda not what i am looking for. General idea would be to like execute both functions, using pregenerated data as entry parameters (saving call order), that would look same as generated but for loop.
Thanks for your help!
2 个评论
Torsten
2022-12-9
func1 using data, generated by func2 on each step
That contradicts your code where both functions are independent of each other.
How are the two functions coupled ?
回答(0 个)
另请参阅
类别
在 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!