- 积分
- 12619
- 威望
- 109
- 金钱
- 3
- 阅读权限
- 100
- 在线时间
- 2466 小时
|
7#
发表于 2005-12-6 12:39
| 只看该作者
刚才找到以前写的,是这样的
function matrix = readMatrix( fileName )
fid = fopen(fileName,'r');
matrix=[0 0 0];
while (~feof(fid))
tline =fgetl(fid);
zwischenmatrix=str2num(tline);
if length(zwischenmatrix)== 3
matrix=[matrix;zwischenmatrix];
end
end
fclose(fid);
matrix=matrix(2:length(matrix),:); |
|