How can I create P-code for main script along with their sub-scripts?

1 Ansicht (letzte 30 Tage)
Hi,
How can I create P-code for main script along with their sub-scripts?
I am calling all subscripts in main scirpt.

Akzeptierte Antwort

Wan Ji
Wan Ji am 16 Aug. 2021
You can make main file like this
function main()
% main file body
end
function fun1()
% fun1
end
function fun2()
% fun2
end
...
Then pcode your main file!
  3 Kommentare
Wan Ji
Wan Ji am 16 Aug. 2021
If so, pcode all the scripts in a file folder is not a difficult thing. In the current file folder, do
a = dir('.\*.m');
arrayfun(@(i)pcode(a(i).name), 1:1:numel(a));
Walter Roberson
Walter Roberson am 16 Aug. 2021
pcode accepts wildcards and folder names.
However by itself it does not analyze functions or scripts to figure out what is called, especially not from other directories.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by