Printing output result given different input

3 次查看(过去 30 天)
Hello everyone,
I am trying to print in txt files the outputs calculate from a code which is simulating an inversion.
I managed to print the output (let's called it model) if I include only one input variable by using the dlmwrite function (dlmwrite('Model.txt', [model ],'Delimiter',' ','precision','%.4f'))).
The code allows to run the inversion with more than one input variable so the variable named model has two results; it calculates the results considering the input file 1 and the input file 2 at the same time. At this point, I would like to print in two separate files the outputs from the two input variables. If I used the dlmwrite funtion as I wrote before I got only one result (the second variable result) but not both.
Do you have some suggestion to how use the dlmwrite function to print both?
Chiara

回答(2 个)

Walter Roberson
Walter Roberson 2023-7-27
dlmwrite can only write to one file in any given call.
dlmwrite('Model_1.txt', First_Variable, 'Delimiter', ' ', 'precision', '%.4f')
dlmwrite('Model_2.txt', Second_Variable, 'Delimiter', ' ', 'precision', '%.4f')
  3 个评论
Walter Roberson
Walter Roberson 2023-7-28
There is no such thing as an if loop.
If executes a section of code 0 or 1 times
for executes a section of code a pre-determined number of times (unless ended prematurely)
while executes a section of code an undetermined number of times, until conditions change or ended prematurely.
Walter Roberson
Walter Roberson 2023-7-28
I suspect the answer you are looking for is:
filename = sprintf('Model_%d.txt', LOOP_COUNTER_VARIABLE_GOES_HERE);
dlmwrite(filename, DATA_VARIABLE_NAME_GOES_HERE, 'Delimiter', ' ', 'precision', '%.4f');

请先登录,再进行评论。


Chiara Lanzi
Chiara Lanzi 2023-8-1
Dear Walter,
thanks for your suggestion. I tried but it's still not working. I can print two files but they have the same solution.
Anyway, I'll work more on t his and thanks agian on your suggestion.

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by