📄 use_fcontrol.m
字号:
a=[1:6];
fid=fopen('six.bin','w');
fwrite(fid,a,'short');
status=fclose(fid);
fid=fopen('six.bin','r');
six=fread(fid,'short');
eof=feof(fid);
frewind(fid);
status=fseek(fid,2,0);
position=ftell(fid);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -