matlab的基础简称

2020-08-29  本文已影响0人  爱吃柠檬的北极熊

向量vector  随机化ran=random 

矩阵matrix

t=ones(14  3)

t=zeros(14  3)

age*grade*gender

采样率sample rate 

变量variable

row column

min  help max  mean  rand zeros

find(f1>0.001&f1<0.02)

&同时 and

竖或者or

for  ii=1:10 disp(f1(ii)):end

for循环

把数1到10依次显示出来

clear清除

edf:欧洲数据模式

abs:对目标取绝对值

plot:matlab中二维线画图函数

hold on:作用是保持原图并接受此后绘制的新的曲线,叠加绘图

fft:快速傅里叶变换

figure在matlab中是建立图形的意思,系统自动从1,2,3,4等等来建立图形,数字代表第几副图形,figure(1)就是第一副图的意思

figure,plot(t,y)

t代表时间  y代表信号

t是X轴,y是Y轴

中括号:向量

Y=sin(wt)正弦

w角的频率

t:0:0.001:2

t:0:0.0001:2

y=sin(2*pi*t):

figure,plot(t,y)

y2=sin(4*pi*t)

figure,plot(t,y2)

figure

plot(t,y',r'):hold on:plot(t,y2',g'):

w=2*pi*f

f=2

周期是1/f

频率是周期的倒数

y3=y2*y 两信号的叠加

plot(t,y3',b'):hold on

上一篇下一篇

猜你喜欢

热点阅读