What does it mean: fileStream::DetectCharset():frea ?

3 views (last 30 days)
Zhixin Wang
Zhixin Wang on 30 Dec 2021
Commented: Zhixin Wangon 3 Jan 2022
Hi, I'm using MATLAB Parallel Computing Toolbox to run a rather complicated project and I'm using parprogress 监控专业gress of the script. However, I see the following output and I don't understand the meaning of it:
fileStream::DetectCharset():frea
Does anyone know? Thanks!

Accepted Answer

Raymond Norris
Raymond Norris on 3 Jan 2022
Here's a trivial example. Look at the documentation for more information.
functionzw
d = parallel.pool.DataQueue;
d.afterEach(@giveUpdate)
parforidx = 1:20
A(idx) = rand;
send(d,idx)
end
end
functiongiveUpdate(varargin)
fprintf("Finished simulation "+ varargin{:} +"\n")
end

More Answers (1)

Raymond Norris
Raymond Norris on 30 Dec 2021
Can't answer this for you, but you might consider looking at DataQueues //www.tatmou.com/help/parallel-computing/parallel.pool.dataqueue.html so another solution.
1 Comment
Zhixin Wang
Zhixin Wang 202年1月2日2
Thank you. Not sure if I understood you correctly, are you suggesting another solution to monitor the progress of parfor?

Sign in to comment.

下载188bet金宝搏


Release

R2021b

Community Treasure Hunt

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

Start Hunting!