Workaround? / Java crashes when a Live Script has too many images to export to HTML
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
My data analysis produces many images (+50 figures). Most of the time, these can be rendered directly in the Live Script (Live Editor). However, often I want to distribute these to other people in the form of an HTML file.
When exporting the Live Script from the Live Editor to HTML, if there are this many figures, I'll get an error from Java and I'll have to exit Matlab to recover.
I already know how to save figures as files, which is one possible work around...but
- Is this a known issue?
- How many figures can the Live Editor handle / render in *.mlx files?
- How many figures can the Live Editor handle / render when exporting to *.html?
- Can this limit be increased by the user in any way? (I have 64 GB of RAM and plenty of SSD space so that's not the problem)
Thanks!
1 comentario
Stefan Kefer
el 8 de Oct. de 2022
I do run into the same problem. It also happens when I want to export the live script into a PDF / DOCX file.
Respuestas (1)
Smit
el 13 de Oct. de 2022
Hi
I understand that you are having issues with exporting your Live Script to HTML due to large number of figures present in your script. It is a known issue and memory limitations might be the culprit for the error.
As a possible workaround, you can try to adjust Java Heap size by editing your preferences in MATLAB by following the instructions given here.
If needed, you can also regenerate your MATLAB preferences by following the instructions given here.
Clearing MATLAB workspace variables that are not in use could also help, you can do so by executing the following command
clear var1 var2 …
Or you can clear all workspace variables by executing
clear
Hope this resolves your issue.
0 comentarios
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!