Combine distributed cells and output from tasks
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I am working with Matlab parallel server. In my code, after submitting a job, I create a certain amount of tasks, and then I take the results back on my computer by using the function
fetchOutputs()
In this way, I get the results on my client machine. However, is there a way to keep the results stored in a cell variable, but distributed in the cluster? I was reading about distributed.cell, but I am not sure how to use it without loading first the results in the client (I would do something like
result = fetchOutput(job_set);
D = distributed.cell(size(result));
).
Any smarter way of doing this?
1 个评论
Alvaro
2022-12-21
编辑:Walter Roberson
2022-12-21
Could you elaborate on the next steps you would take with that distributed cell array in the cluster? Did the function in your next question do what you expected?
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Parallel Server 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!