Matlab 版 (精华区)
发信人: hahn (有奇☆闭关造文中), 信区: Matlab
标 题: [合集] 请教 读取文件的问题
发信站: 哈工大紫丁香 (Tue Nov 14 07:35:56 2006), 站内
────────────────────────────────────────
people (smile) 于 (Wed Jun 7 13:44:35 2006) 说道:
目录下有名为 MN_Relation_1.txt 到 MN_Relation_100.txt 的 100 个数据文件。
想循环读文件。
我的代码(如下 )不好用,请问该怎么弄呢?
clear;
clc;
hold on;
for i = 1:100;
c1 = 'MN_Relation_';
c2 = int2str(i);
c3 = strcat(c1,c2,'.txt')
%load MN_Relation.txt;
load c3
%%
end
────────────────────────────────────────
zjliu (秋天的萝卜) 于 (Wed Jun 7 14:03:18 2006) 说道:
试试这个函数textread
【 在 people (smile) 的大作中提到: 】
: 目录下有名为 MN_Relation_1.txt 到 MN_Relation_100.txt 的 100 个数据文件。
: 想循环读文件。
: 我的代码(如下 )不好用,请问该怎么弄呢?
: ...................
────────────────────────────────────────
people (smile) 于 (Wed Jun 7 14:07:08 2006) 说道:
谢谢
我用 文件操作 fopen , fscanf 实现了。
【 在 zjliu (秋天的萝卜) 的大作中提到: 】
试试这个函数textread
【 在 people (smile) 的大作中提到: 】
: 目录下有名为 MN_Relation_1.txt 到 MN_Relation_100.txt 的 100 个数据文件。
: 想循环读文件。
: 我的代码(如下 )不好用,请问该怎么弄呢?
: ...................
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.279毫秒