phase-VIV Post

Posted code-saturne

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phase-VIV Post相关的知识,希望对你有一定的参考价值。

find the phase difference between two singnals

matlab code

% phase lag of sine and cosine function
% https://www.mathworks.com/help/signal/ug/cross-correlation-of-phase-lagged-sine-wave.html
rng default

t = 0:99;
x = cos(2*pi*1/12*t);  % 12 samples in one periods
y = sin(2*pi*1/12*t);
[xc,lags] = xcorr(y,x,24,‘coeff‘);  % ‘24‘ equal to 2 periods 

stem(lags(25:end),xc(25:end),‘filled‘)

hold on
plot (t,x)
%plot (t,y)
plot([2.5 2.55],[-1 1])

ax = gca;
ax.XTick = 0:2.5:20;

 

以上是关于phase-VIV Post的主要内容,如果未能解决你的问题,请参考以下文章

推进学说代码片段

非常有用的 48 个 JavaScript 代码片段

测试片段post 2

YouTube API v3 over HTTP POST:上传视频时无法设置片段(标题最终为“未知”)

简单的 Javascript http 请求片段但不起作用

是否可以将一个对象从一个片段发送到另一个片段?