Using LaTeX interpreter + saveas png/epcs inside a parfor loop
Show older comments
I'm trying to use the LaTeX interpreter (for xlabel) in a function that is being called from a parfor loop (to create a figure and then save it as png/epsc using saveas).
However, when I do so, I get the following error:
Error using parallel_function (line 589)
The session that parfor is using has shut down.
The client lost connection to lab #. This might be due to network problems, or the interactive matlabpool job might have errored.
Is there a way to use the LaTeX interpreter inside a parfor loop?
2 Comments
Edric Ellis
on 12 Sep 2014
Hm, I can't reproduce that. What OS and version of MATLAB are you using? Here's what I tried:
spmd
figure(1);
plot(1:10);
xlabel('$x^2$', 'Interpreter', 'latex');
saveas(1, 'workerfigure', 'fig');
end
Naama
on 12 Sep 2014
Accepted Answer
More Answers (0)
Categories
Find more on Printing and Saving in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!