1、ans:最近计算的答案
代码示例1
Matlab
1+2
ans =
3
代码示例2
Matlab
B=rand(7)
B =
列 1 至 6
0.7060 0.3171 0.1869 0.6797 0.5853 0.9593
0.0318 0.9502 0.4898 0.6551 0.2238 0.5472
0.2769 0.0344 0.4456 0.1626 0.7513 0.1386
0.0462 0.4387 0.6463 0.1190 0.2551 0.1493
0.0971 0.3816 0.7094 0.4984 0.5060 0.2575
0.8235 0.7655 0.7547 0.9597 0.6991 0.8407
0.6948 0.7952 0.2760 0.3404 0.8909 0.2543
列 7
0.8143
0.2435
0.9293
0.3500
0.1966
0.2511
0.6160
2、clc:清空命令行窗口
代码示例
Matlab
clc
前后对比效果图
3、clear:清空工作区
代码示例
Matlab
clear
前后对比效果图
4、format:设置输出显示格式
代码示例1
Matlab
format long
pi
ans =
3.141592653589793
代码示例2
Matlab
format short
pi
ans =
3.1416
输出显示格式汇总
5、commandhistory 打开命令历史记录窗口
代码示例
Matlab
commandhistory