Subscripted assignment dimension mismatch.
Show older comments
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]
Answers (2)
Azzi Abdelmalek
on 19 Sep 2013
0 votes
Maybe you should use cell array ff{i,j} instead of ff(i,j)
Jan
on 19 Sep 2013
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
Categories
Find more on Variables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!