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;
caracteristic=input(' Caracteristic : ',"s")
Name1=input(' Name1 : ',"s")
Name2= input ("Name2 : ","s")
Name3= input (" Name3 : ", "s")
Name4= input (" Name4: ","s")
Here is a part of my second code named Result :
export("Result.mlx", "D:\desktop ", ...
HideCode=true,Format="html",OpenExportedFile=true);
Thanks for your help