- 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).
Export function is saving previous result of matlab live script
8 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(2 个)
Pavan Sahith
2024-8-5
编辑:Pavan Sahith
2024-8-5
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)]);
You can refer to following links to know more
2 个评论
Pavan Sahith
2024-8-5
编辑:Pavan Sahith
2024-8-6
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.
Yukthi S
2024-8-5
You can refer to this existing MATLAB amswer: https://www.mathworks.com/matlabcentral/answers/1908365-why-does-export-function-on-a-live-script-export-the-data-of-the-previous-run?s_tid=answers_rc1-3_p3_MLT
Save the file before exporting to get the most recent execution results!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!