
R=input('the file name\n','s');
N=input('the desired number of Gaussian numbers=');

y=randn(N,1);

fid=fopen(R,'w');
fprintf(fid,'%f\n',y);
