gpt4 book ai didi

matlab - 使用 fprintf 将字符串和表格合并到一个文本文件中 - Matlab

转载 作者:行者123 更新时间:2023-12-04 12:14:40 24 4
gpt4 key购买 nike

如何将下面脚本中生成的信息保存到文本文件中,其中包括以下格式的字符串和表格?
格式:

M=5
1 21
2 22
3 23
4 24
5 25
5points
脚本:
clc;
clear all;
close all;

ElmentsNum = "EM=5";
x = (1:5)';
y =(21:25)';
t = table(x,y);
M = "5points"

fileID = fopen('E:/Data.txt');
fprintf(fileID,'%s/n',ElmentsNum)
fprintf(fileID,'%.4f',t)
fprintf(fileID,'%s/n',M)
fclose(fileID)

最佳答案

很简单,只提取表的值,然后一行一行地写出来:

extracted_table=table2array(t);

fileID = fopen('Data.txt','w');
fprintf(fileID,'%s\n',ElmentsNum);
for ii=1:size(extracted_table,1)
% fprintf(fileID,'%.4f %.4f\n',extracted_table(ii,:)); % if you want decimal places
fprintf(fileID,'%d %d\n',extracted_table(ii,:)); % if you want integers (as in the example)
end
fprintf(fileID,'%s\n',M);
fclose(fileID);

关于matlab - 使用 fprintf 将字符串和表格合并到一个文本文件中 - Matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69414506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com