matlab怎么把每次循环的结果写到txt文件里?

2025-01-04 03:55:49
推荐回答(1个)
回答1:

fopen放在for循环之前;fclose放在for循环之后;
或者改写fopen那里为fopen(filepath, 'a+')