function web_write_cell_to_file(str, file, opentype) tmp=[]; fid=fopen(file,opentype); for i=1:length(str) tmp=str{i}; fprintf(fid,'%s\n',tmp); end fclose(fid); return