problem with matlab live script and the export function
Show older comments
Hello to all,
I have a problem with matlab live script and the export function.
My matlab live script code calls another matlab file which contains inputs.
When I run the code everything goes well but when I export it exports the old inputs that I had to enter.
For example, when I launch the code for the first time I enter in the different inputs :
a
b
c
d
when importing in htlm file these inputs will appear in the htlm file.
The problem will occur when I run it for the second time with inputs f, g, h, j, the file exported to htlm instead of containing f, g, h, j still contains a, b, c, d.
If I run it for a 3rd time with inputs q,w,s,x the exported file will contain this time f,g,h,j.
I want to specify that I used close all; clear all; clc at the beginning of each code.
I even used clear all output to fix this but this time when the file is exported I don't have the inputs displayed anymore.
Thanks for your help
Here is a part of my first code named main :
clc;clear class;close all;
format shortG
caracteristic=input(' Caracteristic : ',"s")
Name1=input(' Name1 : ',"s")
disp(" ")
Name2= input ("Name2 : ","s")
disp(" ")
Name3= input (" Name3 : ", "s")
disp(" ")
Name4= input (" Name4: ","s")
Here is a part of my second code named Result :
clc;clear; close all;
main.mlx
export("Result.mlx", "D:\desktop ", ...
HideCode=true,Format="html",OpenExportedFile=true);
Thanks for your help
Answers (2)
Wendpagnangda Bryan Jaouad Précieux KONKOBO
on 5 Jul 2022
1 vote
Yash Srivastava
on 27 Jun 2022
0 votes
This is happening because the “export” function considers the last saved changes made to the file as “checkpoint” and exports that output. If the live script is running and changes are being made to the output (which in your case happens in the second line of “Result”), those changes will not be reflected in the "export" function’s output.
3 Comments
Wendpagnangda Bryan Jaouad Précieux KONKOBO
on 28 Jun 2022
Celina
on 12 Apr 2023
Have you founda way around this? I'm struggeling with the same right now.
Sabreen
on 15 Apr 2023
I have a similar problem, and created another live script where I ran the original live script (from which I want the output) and then attempted to export the output, as such:
run('OriginalLiveScript.mlx')
% Name of output file
outputFile=strcat(timestr,'_SIM_OUTPUT.pdf');
% Export the PDF file to subfolder of current run
pdfPath = strcat(newdir,'/',outputFile)
pdfFile = export("OriginalLiveScript.mlx", pdfPath, OpenExportedFile=false, HideCode=true);
However, the resulting pdf file is still showing the output of the previous run.
Categories
Find more on Debugging and Analysis 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!