Problem with .executable program
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Hello,
I have a problem with a code. I create an .exe file, that cames from a matlab code.
I used the command:
clc
clear
mcc -m file.m
I have to mention that my matlab code use a file "data.txt" that takes one number in order to tun a subroutine in my matlab code.
I realised that I have to execute again and again my matlab code in order to execute the program , when I want to change the content of "data.txt".
My full code of .m file is:
clc
clear
data=regexp(fileread('data.txt'), '\r?\n', 'split') .';
data_new=data{1}
calculations.m
("calculations.m" is a subroutine I use)
Does anybody knows how can I avoid again and again execution, and to make automatically the changes I want?
4 件のコメント
Rik
2020 年 5 月 8 日
Well, since you don't show multiple iterations of anything it is difficult to help you.
Walter Roberson
2020 年 5 月 8 日
Does calculations need the variable data_new ? Or does it need data.txt to be rewritten to have only one line (per run) of the contents of data.txt that the code starts with?
Why not rewrite calculations to be a function that accepts a line? Then you could do things like
all_results = cellfun(@calculations, data)
Ivan Mich
2020 年 5 月 8 日
Walter Roberson
2020 年 5 月 8 日
How are you doing the updating of input.txt ?
You say you want to rewrite "data.txt" but your steps show that second.exe needs input.txt and I do not see anywhere in your steps that needs a new version of data.txt .
回答 (0 件)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!