oui exactement comme vous avez écrit mais j'ai encore un problèmes voila j'ai écrit ce code:
1 2 3 4 5 6 7
| fid = fopen('donnees.txt','rt');
T = textscan(fid,'%s %d %d %d %d %d %d %d %d %s','CollectOutput',true);
fclose(fid);
T{1},T{2},T{3}
Inputs = T{2};
outputs = T{3};
net = newff(Inputs,outputs,20); |
mais il y a une erreur:
??? Error using ==> cat
CAT arguments dimensions are not consistent.
Error in ==> cell2mat at 89
m{n} = cat(1,c{:,n});
Error in ==> newff>new_5p1 at 109
if isa(t,'cell'), t = cell2mat(t); end
Error in ==> newff at 89
net = new_5p1(varargin{:});
si vous pouvez encore m'aider
Partager