matlab常用内置函数
1.figure() --- 创建一个用来显示图形输出的一个窗口对象2.conv() --- 卷积操作3.subplot() --- 将figure中的图片划分为几块income = [3.2 4.1 5.0 5.6];outgo = [2.5 4.0 3.35 4.9];subplot(2,1,1); plot(income)subplot(2,1,2); plot(outg...