Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Problem with .executable program

1 回表示 (過去 30 日間)
Ivan Mich
Ivan Mich 2020 年 5 月 8 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
Ivan Mich
Ivan Mich 2020 年 5 月 8 日
Well, I use
data_new={1}
in order to replace a line of an input file that is used to run an .exe file (let's call ite second.exe)
calculations.m subroutine makes calculation from all above. But the problem is that I want to rewrite the "data.txt" and makin all this process again by the new content od "data.txt".
To summurize that my code:
1)reads the content of "data.txt"
2)put the content of the "data.txt" to a specific line in the "input.txt"
3)runs "second.exe" taking the "input.txt"
4)Do calculations using the calculations.m subroutine
The problem is that content of data.txt is changing but .exe code I am making does not taking into accound thw change of the content of "data.txt"
Walter Roberson
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!

Translated by