Problem with publish and plots

26 visualizaciones (últimos 30 días)
matt
matt el 5 de Dic. de 2017
Editada: Richard Quist el 26 de Feb. de 2022
I am trying to publish my code to a pdf (publish('file','pdf'), but when i run my script it gets caught in an infinite loop creating the plots repeatedly. The code works fine without the publish function at the end, only when I try to use it does it give me problems.
  1 comentario
Md. Mahmudul Hasan Shihab
Md. Mahmudul Hasan Shihab el 2 de Jul. de 2021
Use this format in the command window.
options.format = 'pdf';
options.showCode = true; % if you want to hide the code write "false"
publish('file_name',options);

Iniciar sesión para comentar.

Respuestas (1)

Richard Quist
Richard Quist el 26 de Feb. de 2022
Editada: Richard Quist el 26 de Feb. de 2022
If your code looks like the following then you are recursively invoking your script (you call your script, which calls the publish command, which calls your script, which calls publish, ...)
% myscript.m
% create a plot
bar(magic(4));
% publish it
publish('foo.m', 'pdf')
Instead, remove the call to publish from your script:
% myscript.m
% create a plot
bar(magic(4));
... and place the call to publish in a separate script or call it from the MATLAB command window:
% publish myscript
publish('myscript.m', 'pdf')

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by