Hello.
I have a problem when I want to plot the mfile
mfile=zeros(3,10001);
for nr_fisier = 1:14000
filename = strcat(int2str(1),'_',int2str(nr_fisier+1),'.csv');
mfile(nr_fisier,:) = csvread(filename,16,1);
end
f=470:790
plot(f,mfile)
it sais:
Error using ==> plot
Vectors must be the same lengths.
Error in ==> transformare at 11
plot(f,mfile)
Thanks for the help.