problem with matlab live script and the export function

31 vues (au cours des 30 derniers jours)
Wendpagnangda Bryan Jaouad Précieux KONKOBO
Commenté : Sabreen le 15 Avr 2023
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

Réponses (2)

Wendpagnangda Bryan Jaouad Précieux KONKOBO
Thank you for your answer.
How can I get around this? I would like to have a report at the end in htlm format.
Thanks for your help

Yash Srivastava
Yash Srivastava le 27 Juin 2022
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 commentaires
Celina
Celina le 12 Avr 2023
Have you founda way around this? I'm struggeling with the same right now.
Sabreen
Sabreen le 15 Avr 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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Adding custom doc dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by