Parallel Computing and Save function
조회 수: 4 (최근 30일)
이전 댓글 표시
I am using the parallel computing function to run an optimization design scheme. I am running into an issue where I need to write information to text files and then call them up by an independent program. However, since I am using parallel computing I need to create x number of files where x is the number of cores being used. The file names all have to be different and I am trying to figure out how to do that.
There is the psave function, but I can't get it to save as a text file on a .mat file.
댓글 수: 0
채택된 답변
Martijn
2011년 1월 20일
편집: Randy Souza
2012년 9월 7일
The LABINDEX function returns the index of the worker. You should be able to use this number to create an unique filename:
filename = ['mytext' num2str(labindex) '.txt'];
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!