输入输出命令
disp 显示数组或字符串
fscanf 从文件读取数据(类比于C语言scanf)
fprintf 格式化写入(类比于C语言printf)
%fprintf
for i=0:15
if mod(i,2)==0
fprintf('%d*',i);
end
end
fprintf('\n');
%输出结果
0*2*4*6*8*10*12*14*
input 输入
%代码
x=input('please input sth:\n');
%x可以为数字
>> test
please input sth:
824
>> x
x =
824
%x为矩阵
>> test
please input sth:
[1,2,3;4,5,6;7,8,9]
>> x
x =
1 2 3
4 5 6
7 8 9
;禁止屏幕打印显示
fscanf、fprintf包括以下格式化输入输出
%d 整数型
%f 浮点型
%s 字符串型
%e 科学计数法浮点型