Export function is saving previous result of matlab live script

8 visualizaciones (últimos 30 días)
Export function is saving previous result of matlab live script, and saving it is loosing all the data when overwritten.
I have a matlab live script file, and export function is included in that, however it is not saving the current run data.
is there any way to export the only data of the current state of matlab live script?

Respuestas (2)

Pavan Sahith
Pavan Sahith el 5 de Ag. de 2024
Editada: Pavan Sahith el 5 de Ag. de 2024
The “export()” function takes a file path as argument and therefore, it loads the last saved state of the file from disk for the export. So the results are not current. If the most recent execution results should be considered while exporting, please save the file before exporting.
You can also do it programatically, Here is an example :
global scripts_dir_ul script_name
input_file = fullfile(scripts_dir_ul, script_name); % Path to the current running .mlx file
output_file = "Test_" + string(datetime('now', 'Format', 'yyyy-MM-dd_HH_mm_ss')) + "_report.pdf";
% Save the live script
matlab.internal.liveeditor.executeAndSave(which(input_file));
% Export the PDF file
matlab.internal.liveeditor.openAndConvert(which(input_file), fullfile(scripts_dir_ul, output_file));
disp(['Report exported to: ', fullfile(scripts_dir_ul, output_file)]);
  • matlab.internal.liveeditor.executeAndSave(which(input_file));: This function ensures the live script is saved with the latest data before any export operations. The which function provides the full path to the .mlx file, which is necessary for the executeAndSave function to work correctly.
  • matlab.internal.liveeditor.openAndConvert(which(input_file), fullfile(scripts_dir_ul, output_file));: This function opens the saved live script and converts it to the desired format (PDF in this case).
You can refer to following links to know more
  2 comentarios
Prathyusha Gurrampally
Prathyusha Gurrampally el 5 de Ag. de 2024
Hi Pavan,
I am facing the below issue while using this method
Nested Live Editor execution is not supported.
executionTime = matlab.internal.liveeditor.LiveEditorUtilities.execute(editorObj.Editor.RtcId, fileNameToExecute);
matlab.internal.liveeditor.executeAndSave(which(input_file));
Pavan Sahith
Pavan Sahith el 5 de Ag. de 2024
Editada: Pavan Sahith el 6 de Ag. de 2024
I tried with a sample code in MATLAB R2023a and I don't face any issue with nested Live Script execution.
However, I noticed a thread where a user highlighted that she faced a similar issue, noting "Nested Live Editor execution is not supported" in MATLAB starting from version R2023b and onwards.
To work around this limitation, try running this code form a .m file,which might avoid the nested execution issue.

Iniciar sesión para comentar.


Yukthi S
Yukthi S el 5 de Ag. de 2024
  3 comentarios
Yukthi S
Yukthi S el 5 de Ag. de 2024
Editada: Yukthi S el 5 de Ag. de 2024
Try using
save(input_file)
instead of
save(inputfile)
Prathyusha Gurrampally
Prathyusha Gurrampally el 5 de Ag. de 2024
Hi Yukthi,
Sorry, its a typo in the above code, However, i am trying to save using ' save(input_file) '

Iniciar sesión para comentar.

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by