x = [1 2 3]; fid = fopen('my_data.txt','w'); % "w" stands for writing permission fprintf(fid,'%d',x); % write "x" into a txt file as integers fclose(fid); ...
確定! 回上一頁