Subscripted assignment dimension mismatch.
이전 댓글 표시
i have a the following code
clear all
clc
file=input('file name ','s');
fid = fopen(file);
for i = 1:44
for j = 1:2
ff(i,j) = fscanf(fid,'%e %e',2);
end
end
ff
and that results
Subscripted assignment dimension mismatch.
Error in proyectosuelos (line 12)
ff(i,j) = fscanf(fid,'%e %e',2);
Tanks
[EDITED, Jan, please format your code properly - Thanks]
답변 (2개)
Azzi Abdelmalek
2013년 9월 19일
0 개 추천
Maybe you should use cell array ff{i,j} instead of ff(i,j)
Jan
2013년 9월 19일
ff(i,j) = fscanf(fid,'%e %e',2);
Here "ff(i,j)" is a scalar, while "fscanf(fid,'%e %e',2)" reads two values. For obvious reasons, Matlab cannot store two values inside one element. So perhaps you want:
% clear all % No, do not clear everything!
% clc % Is this useful?!
file = uigetfile('*.*, 'file name ');
fid = fopen(file);
ff = zeros(44, 2, 2);
for i = 1:44
for j = 1:2
ff(i,j, :) = fscanf(fid,'%e %e', [1, 2]);
end
end
카테고리
도움말 센터 및 File Exchange에서 Variables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!