青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 12,  comments - 54,  trackbacks - 0
一般來說,對均勻間隔采樣的數據的功率譜估計,可以采用DFT/AR/MA/ARMA/MUSIC等方法估計;
如果由于實驗條件限制,或者偶爾的數據丟失,采樣的數據間隔時間/空間不是均勻間隔的,此時,大致可以有兩種處理方式:
1)用插值的方法將數據轉換為等間隔的,然后按等間隔采樣方法處理;這種方法最大的缺陷是,在低頻成分處會出現假的凸起。
2)采用Lomb方法處理;
本文將給出Lomb方法公式推導的結果,和C++代碼實現;至于具體推導過程,請參閱

Jerry D. Scargle, Studies in Astronomical Time Series Analysis. II. Statistical Aspect of Spectral Analysis of Unevenly Spaced Data, the Astrophysical Journal, vol. 263, pp. 835--853

這里不再多說。

Lomb方法

假設數據點集為[;(h_i, t_i);](所有數學公式采用latex語法書寫),

定義其數學期望和方差分別為

[;h=\frac{1}{N} \sum_{i} h_i \\ \delta^2=

定義歸一化周期圖為

[;P_N(\omega) = \frac{1}{2 \delta ^2}  \{ \frac{[\sum_i (h_i - h) \cos \omega(t_i - \tau)]^2 {\sum_i \cos^2 \omega (t_i - \tau)}  + \frac{[\sum_i (h_i - h) \sin \omega(t_i - \tau)]^2 {\sum_i \sin^2 \omega (t_i - \tau)}  \} ;]

其中[;\tau;]由下式定義

[; \tan 2 \omega \tau =

Lomb方法的C++實現:

?1?//lomb.hpp
?2?
?3?#ifndef?LOMB_HPP_INCLUDED__
?4?#define?LOMB_HPP_INCLUDED__
?5?
?6?#include?<vector>
?7?using?std::vector;
?8?
?9?//Warning:
10?//??If?you?would?rather?a?self-defined?type?than
11?//??a?builtin?type,?these?methods?MUST?be?offered:
12?//
13?//??operator=(?const?Type&?other?)
14?//??operator=(?const?long?double&?val?)
15?//??operator+(?const?Type&?lhs,?const?Type&?rhs)
16?//??operator-(?const?Type&?lhs,?const?Type&?rhs)
17?//??operator*(?const?Type&?lhs,?const?Type&?rhs)
18?//??operator/(?const?Type&?lhs,?const?Type&?rhs)
19?//??sin(?const?Type&?val?)
20?//??cos(?const?Type&?val?)
21?//
22?template
23?<
24?????typename?Type?=?long?double
25?>
26?class?Lomb
27?{
28?????public:
29?????????vector<Type>?spectrum()?const;
30?
31?????public:
32?????????Lomb(???const?vector<Type>&?_h,
33?????????????????const?vector<Type>&?_t?);
34?????????~Lomb();
35?
36?????private:
37?????????struct?Lomb_Data;
38?????????Lomb_Data*?lomb_data;
39?};
40?
41?#include?"lomb.tcc"
42?
43?#endif?//?LOMB_HPP_INCLUDED__
44

?


//lomb.tcc

#include?
"iterator.hpp"

#include?
<cassert>
#include?
<cmath>

#include?
<numeric>
#include?
<iterator>
#include?
<algorithm>
using?namespace?std;

template
<
????typename?Type
>
struct?Lomb<Type>::Lomb_Data
{
????vector
<Type>?h;
????vector
<Type>?t;

????Type?f()?
const;
????Type?tau(?
const?unsigned?int?)?const;
????Type?e()?
const;
????Type?d()?
const;

};

template
<
????typename?Type
>
Type?Lomb
<Type>::Lomb_Data::f()const
{
????
const?Type?max?=?*(?max_element(
????????????t.begin(),?t.end()?)?);
????
const?Type?min?=?*(?min_element(
????????????t.begin(),?t.end()?)?);
????
const?unsigned?int?N?=?h.size();
????
const?Type?ans?=?N?/?(?max?-?min?)?;

????
return?ans;
}

template
<
????typename?Type
>
Type?Lomb
<Type>::Lomb_Data::tau(?const?unsigned?int?n?)const
{

????
const?Type?omega?=
????????
2.0L?*?3.14159265358979L?*?(?this?->?f()?)?*?n?;
????
const?Type?sin_?=
????????sin2_accumulate(?t.begin(),
?????????????????????????t.end(),
?????????????????????????omega
????????????????);
????
const?Type?cos_?=
????????cos2_accumulate(?t.begin(),
?????????????????????????t.end(),
?????????????????????????omega
????????????????);
????
const?Type?ans?=?atan(?sin_?/?cos_?)?/?(?2.0L?*?omega?);

????
return?ans;
}

template
<
????typename?Type
>
Type?Lomb
<Type>::Lomb_Data::e()const
{
????
const?Type?ans?=
????????mean(
????????????h.begin(),
????????????h.end(),
????????????Type_Keep
<Type>()
????????????);

????
return?ans;
}

template
<
????typename?Type
>
Type?Lomb
<Type>::Lomb_Data::d()const
{
????
const?Type?ans?=
????????variance(
????????????h.begin(),
????????????h.end(),
????????????Type_Keep
<Type>()
????????????);

????
return?ans;
}

template
<
????typename?Type
>
Lomb
<Type>::Lomb(?const?vector<Type>&?_h,
????????????
const?vector<Type>&?_t
??????????)
{
????assert(?_t.size()?
==?_h.size()?);
????lomb_data?
=?new?Lomb_Data;
????lomb_data?
->?h?=?_h;
????lomb_data?
->?t?=?_t;
}

template
<
????typename?Type
>
Lomb
<Type>::~Lomb()
{
????delete?lomb_data;
}

template
<
????typename?Type
>
vector
<Type>?Lomb<Type>::spectrum()?const
{
????
const?unsigned?int?N?=?(*lomb_data).h.size();

????
const?Type?f?=?lomb_data?->?f();
????
const?Type?e?=?lomb_data?->?e();

????
const?Type?d?=?lomb_data?->?d();

????vector
<Type>?ans;

????
for?(?unsigned?int?i?=?0;?i?<?N;?++i?)
????{
????????
const?Type?tau?=?lomb_data?->?tau(?i?);
????????
const?Type?omega?=?6.283185307179586476L?*
????????????????????????????????i?
*?f;

????????
const?Type?h_cos_square?=
????????????h_cos_square_accumulate(
????????????????????????????????????????(
*lomb_data).h.begin(),?(*lomb_data).h.end(),
????????????????????????????????????????(
*lomb_data).t.begin(),?(*lomb_data).t.end(),
????????????????????????????????????????e,
????????????????????????????????????????tau,
????????????????????????????????????????omega
????????????????????????????????????);

????????
const?Type?cos_square?=
????????????cos_square_accumulate(
????????????????????????????????????(
*lomb_data).t.begin(),
????????????????????????????????????(
*lomb_data).t.end(),
????????????????????????????????????tau,
????????????????????????????????????omega
?????????????????????????????????);

????????
const?Type?h_sin_square?=
????????????h_sin_square_accumulate(
????????????????????????????????????????(
*lomb_data).h.begin(),?(*lomb_data).h.end(),
????????????????????????????????????????(
*lomb_data).t.begin(),?(*lomb_data).t.end(),
????????????????????????????????????????e,
????????????????????????????????????????tau,
????????????????????????????????????????omega
????????????????????????????????????);

????????
const?Type?sin_square?=
????????????sin_square_accumulate(
????????????????????????????????????(
*lomb_data).t.begin(),
????????????????????????????????????(
*lomb_data).t.end(),
????????????????????????????????????tau,
????????????????????????????????????omega
?????????????????????????????????);

????????ans.push_back(?sqrt(
????????????????????????????????(
????????????????????????????????????h_cos_square
/cos_square?+
????????????????????????????????????h_sin_square
/sin_square
????????????????????????????????)?
/?(2.0L*d)
????????????????????????????)?
/?N
?????????????????????);
????}

????
return?ans;
}

?

??1?//iterator.hpp
??2?
??3?#ifndef?ITERATOR_HPP_INCLUDED__
??4?#define?ITERATOR_HPP_INCLUDED__
??5?
??6?//this?struct?is?just?employed
??7?//to?keep?the?Type?information
??8?template
??9?<
?10?????typename?Type
?11?>
?12?struct?Type_Keep;
?13?
?14?
?15?//calculate
?16?//??????\sum_{i}?\sin?2?\omega?t_i
?17?template
?18?<
?19?????typename?InputItor,
?20?????typename?Type
?21?>
?22?Type?sin2_accumulate(
?23?????????????????????????InputItor?begin,
?24?????????????????????????InputItor?end,
?25?????????????????????????Type?omega
?26?????????????????????);
?27?
?28?//calculate
?29?//??????\sum_{i}?\cos?2?\omega?t_i
?30?template
?31?<
?32?????typename?InputItor,
?33?????typename?Type
?34?>
?35?Type?cos2_accumulate(
?36?????????????????????????InputItor?begin,
?37?????????????????????????InputItor?end,
?38?????????????????????????Type?omega
?39?????????????????????);
?40?
?41?//calculate
?42?//??????\frac{1}{N}?\sum_{i}?h_i
?43?template
?44?<
?45?????typename?InputItor,
?46?????typename?Type
?47?>
?48?Type?mean(
?49?????????????InputItor?begin,
?50?????????????InputItor?end,
?51?????????????Type_Keep<Type>
?52??????????);
?53?
?54?//calculate
?55?//??????\frac{1}{N-1}?\sum_{i}(h_i?-?h)^{2}
?56?template
?57?<
?58?????typename?InputItor,
?59?????typename?Type
?60?>
?61?Type?variance(
?62?????????????????InputItor?begin,
?63?????????????????InputItor?end,
?64?????????????????Type_Keep<Type>
?65??????????????);
?66?
?67?//calcuate
?68?//???????[\sum_i?(h_i?-?h)?\sin?\omega?(t_i?-?\tau)]^{2}
?69?template
?70?<
?71?????typename?Type,
?72?????typename?InputItor
?73?>
?74?Type?h_sin_square_accumulate(?????InputItor?h_start,?InputItor?h_end,
?75?????????????????????????????????InputItor?t_start,?InputItor?t_end,
?76?????????????????????????????????Type?h,
?77?????????????????????????????????Type?tau,
?78?????????????????????????????????Type?omega
?79?????????????????????????????);
?80?
?81?//calcuate
?82?//???????[\sum_i?(h_i?-?h)?\cos?\omega?(t_i?-?\tau)]^{2}
?83?template
?84?<
?85?????typename?Type,
?86?????typename?InputItor
?87?>
?88?Type?h_cos_square_accumulate(?????InputItor?h_start,?InputItor?h_end,
?89?????????????????????????????????InputItor?t_start,?InputItor?t_end,
?90?????????????????????????????????Type?h,
?91?????????????????????????????????Type?tau,
?92?????????????????????????????????Type?omega
?93?????????????????????????????);
?94?
?95?//calculate
?96?//??????\sum_{i}?\cos?^{2}?\omega?(t_i?-?\tau)
?97?template
?98?<
?99?????typename?Type,
100?????typename?InputItor
101?>
102?Type?cos_square_accumulate(?????InputItor?t_start,
103?????????????????????????????????InputItor?t_end,
104?????????????????????????????????Type?tau,
105?????????????????????????????????Type?omega
106?????????????????????????????);
107?
108?//calculate
109?//??????\sum_{i}?\cos?^{2}?\omega?(t_i?-?\tau)
110?template
111?<
112?????typename?Type,
113?????typename?InputItor
114?>
115?Type?sin_square_accumulate(?????InputItor?t_start,
116?????????????????????????????????InputItor?t_end,
117?????????????????????????????????Type?tau,
118?????????????????????????????????Type?omega
119?????????????????????????????);
120?
121?#include?"iterator.tcc"
122?
123?#endif?//?ITERATOR_HPP_INCLUDED__
124?

?

//iterator.tcc

#include?
<cmath>

template
<
????typename?Type
>
struct?Type_Keep
{
????typedef?Type?T;
};

template
<
????typename?Type
>
struct?Sin
{
????Type?
operator()(?const?Type?val?)const
????{
????????
return?sin(?val?);
????}
};

template
<
????typename?Type
>
struct?Cos
{
????Type?
operator()(?const?Type?val?)const
????{
????????
return?cos(?val?);
????}
};

template
<
????typename?InputItor,
????typename?Type,
????typename?Function
>
static?Type?f2_accumulate(
????????????????????????????InputItor?begin,
????????????????????????????InputItor?end,
????????????????????????????Type?omega,
????????????????????????????Function?f
????????????????????????)
{
????Type?ans?
=?Type();
????
while(?begin?!=?end?)
????{
????????ans?
+=?f(?2.0L?*?omega?*?(*begin++)?);
????}
????
return?ans;
}

template
<
????typename?InputItor,
????typename?Type
>
Type?sin2_accumulate(
????????InputItor?begin,
????????InputItor?end,
????????Type?omega
????????)
{
????
return?f2_accumulate(
????????????????????????????begin,
????????????????????????????end,
????????????????????????????omega,
????????????????????????????Sin
<Type>()
?????????????????????????);
}

template
<
????typename?InputItor,
????typename?Type
>
Type?cos2_accumulate(
????????InputItor?begin,
????????InputItor?end,
????????Type?omega
????????)
{
????
return?f2_accumulate(
????????????????????????????begin,
????????????????????????????end,
????????????????????????????omega,
????????????????????????????Sin
<Type>()
????????????????????????);
}

template
<
????typename?InputItor,
????typename?Type
>
Type?mean(
????????InputItor?begin,
????????InputItor?end,
????????Type_Keep
<Type>
????????)
{
????Type?sum?
=?Type();
????unsigned?
int?cnt?=?0;
????
while?(?begin?!=?end?)
????{
????????sum?
+=?*begin++;
????????
++cnt;
????}

????
return?sum?/?cnt;
}

template
<
????typename?InputItor,
????typename?Type
>
static?Type?diff_square_accumulate(
????????????????????InputItor?begin,
????????????????????InputItor?end,
????????????????????Type?mean
????????????????????)
{
????Type?ans?
=?Type();
????
while(?begin?!=?end?)
????{
????????ans?
+=?(?mean?-?*begin?)?*?(?mean?-?*begin?)?;
????????
++begin;
????}
????
return?ans;
}

template
<
????typename?InputItor
>
static?unsigned?int?difference(
????????????????InputItor?begin,
????????????????InputItor?end
????????????????)
{
????unsigned?
int?cnt?=?0;
????
while(?begin++?!=?end?)
????????
++cnt;

????
return?cnt;
}

template
<
????typename?InputItor,
????typename?Type
>
Type?variance(
????????????InputItor?begin,
????????????InputItor?end,
????????????Type_Keep
<Type>
????????????)
{
????
const?Type?average?=
????????mean(?begin,?end,?Type_Keep
<long?double>()?);
????
const?Type?power?=
????????diff_square_accumulate(?begin,?end,?average?);
????
const?unsigned?int?size?=
????????difference(?begin,?end?);
????
const?Type?ans?=?power?/?(size-1);

????
return?ans;
}

template
<
????typename?Type,
????typename?InputItor,
????typename?Function
>
static?Type?h_f_square_accumulate(?????InputItor?h_start,?InputItor?h_end,
????????????????????????????????????InputItor?t_start,?InputItor?t_end,
????????????????????????????????????Type?h,
????????????????????????????????????Type?tau,
????????????????????????????????????Type?omega,
????????????????????????????????????Function?f
????????????????????????????)
{
????Type?ans?
=?Type();
????
while(?(?h_start?!=?h_end?)?&&?(?t_start?!=?t_end?)?)
????{
????????ans?
+=?(?*h_start++?-?h?)?*?f(?omega?*?(?*t_start++?-?tau)?);
????}
????
return?ans*ans;
}


template
<
????typename?Type,
????typename?InputItor
>
Type?h_sin_square_accumulate(?????InputItor?h_start,?InputItor?h_end,
????????????????????????????????InputItor?t_start,?InputItor?t_end,
????????????????????????????????Type?h,
????????????????????????????????Type?tau,
????????????????????????????????Type?omega
????????????????????????????)
{
????
return?h_f_square_accumulate(
????????????????????????????????????h_start,?h_end,
????????????????????????????????????t_start,?t_end,
????????????????????????????????????h,
????????????????????????????????????tau,
????????????????????????????????????omega,
????????????????????????????????????Sin
<Type>()
????????????????????????????????);
}

template
<
????typename?Type,
????typename?InputItor
>
Type?h_cos_square_accumulate(?????InputItor?h_start,?InputItor?h_end,
????????????????????????????????InputItor?t_start,?InputItor?t_end,
????????????????????????????????Type?h,
????????????????????????????????Type?tau,
????????????????????????????????Type?omega
????????????????????????????)
{
????
return?h_f_square_accumulate(
????????????????????????????????????h_start,?h_end,
????????????????????????????????????t_start,?t_end,
????????????????????????????????????h,
????????????????????????????????????tau,
????????????????????????????????????omega,
????????????????????????????????????Cos
<Type>()
????????????????????????????????);
}

template
<
????typename?Type,
????typename?InputItor,
????typename?Function
>
static?Type?f_square_accumulate(?????InputItor?t_start,
????????????????????????????????????InputItor?t_end,
????????????????????????????????????Type?tau,
????????????????????????????????????Type?omega,
????????????????????????????????????Function?f
????????????????????????????)
{
????Type?ans?
=?Type();
????
while(?t_start?!=?t_end?)
????{
????????
const?Type?tmp?=?f(?omega?*?(?*t_start++?-?tau?)?);
????????ans?
+=?tmp?*?tmp;
????}
????
return?ans;
}

template
<
????typename?Type,
????typename?InputItor
>
Type?cos_square_accumulate(?????InputItor?t_start,
????????????????????????????????InputItor?t_end,
????????????????????????????????Type?tau,
????????????????????????????????Type?omega
????????????????????????????)
{
????
return?f_square_accumulate(
????????????????????????????????????t_start,
????????????????????????????????????t_end,
????????????????????????????????????tau,
????????????????????????????????????omega,
????????????????????????????????????Cos
<Type>()
????????????????????????????????);
}

template
<
????typename?Type,
????typename?InputItor
>
Type?sin_square_accumulate(?????InputItor?t_start,
????????????????????????????????InputItor?t_end,
????????????????????????????????Type?tau,
????????????????????????????????Type?omega
????????????????????????????)
{
????
return?f_square_accumulate(
????????????????????????????????????t_start,
????????????????????????????????????t_end,
????????????????????????????????????tau,
????????????????????????????????????omega,
????????????????????????????????????Sin
<Type>()
????????????????????????????????);
}

?

實例

下面這個例子中,將從文件phi.dat中輸入采樣數據,從文件rem.dat中輸入采樣空間間隔,使用Lomb算法處理后,得到的空間頻譜將輸出到文件spectrum.dat中去

?1?#include?"lomb.hpp"
?2?
?3?#include?<iostream>
?4?#include?<fstream>
?5?#include?<vector>
?6?#include?<iterator>
?7?#include?<algorithm>
?8?
?9?using?namespace?std;
10?
11?int?main()
12?{
13?????ifstream?phi_src(?"phi.dat"?);
14?????ifstream?rem_src(?"rem.dat"?);
15?????ofstream?spectrum_dst(?"spectrum.dat"?);
16?
17?????vector<long?double>?h;
18?????vector<long?double>?t;
19?
20?????copy(?istream_iterator<long?double>(phi_src),?istream_iterator<long?double>(),?back_inserter(t)?);
21?????copy(?istream_iterator<long?double>(rem_src),?istream_iterator<long?double>(),?back_inserter(h)?);
22?
23?????Lomb<long?double>*?lomb?=?new?Lomb<long?double>(?h,?t?);
24?
25?????vector<long?double>?v_spectrum?=?lomb?->?spectrum();
26?????copy(?v_spectrum.begin(),?v_spectrum.end(),?ostream_iterator<long?double>(spectrum_dst,?"\n")?);
27?
28?????delete?lomb;
29?????phi_src.close();
30?????rem_src.close();
31?????spectrum_dst.close();
32?
33?????return?0;
34?}
35?

?

備注

Lomb算法的復雜度是O(n^2),若采樣數據比較長,可以采用fft方法簡化復雜度到O(nlogn),與大數乘法中的fft用法一致,此處不再多說。




posted on 2009-01-02 21:20 Wang Feng 閱讀(2606) 評論(3)  編輯 收藏 引用 所屬分類: Numerical C++

FeedBack:
# re: 非均勻取樣數據的功率譜估計方法
2010-07-09 14:53 | JannieBallard
One knows that men's life seems to be expensive, however some people require money for different things and not every man earns big sums cash. Hence to get fast <a href="http://bestfinance-blog.com/topics/business-loans">business loans</a> and just consolidation loans would be a correct solution.   回復  更多評論
  
# re: 非均勻取樣數據的功率譜估計方法
2010-07-18 01:00 | term paper help
There is nothing unnatural If you buy custom essays from the custom research paper service, however this thing would aid you to complete academic results.   回復  更多評論
  
# re: 非均勻取樣數據的功率譜估計方法
2010-07-21 11:49 | dissertation writing service
Direct on what you are going to do at the time being and tomorrow, and have loyalty that the extent will advance when it is damn well on tap. Or maybe buy thesis is what you need . Thanks.   回復  更多評論
  

<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用鏈接

留言簿(4)

隨筆分類

隨筆檔案

Link List

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            在线中文字幕日韩| 一本色道久久综合亚洲精品小说| 亚洲久久成人| 亚洲国产精品一区二区三区| 欧美在线国产精品| 久久精品91久久香蕉加勒比| 午夜日本精品| 欧美aⅴ99久久黑人专区| 久久久国产一区二区| 亚洲欧美综合v| 久久精品麻豆| 久久久久久综合| 麻豆9191精品国产| 亚洲久久成人| 久久久久91| 欧美三级网页| 亚洲精品久久嫩草网站秘色| 亚洲综合导航| 美玉足脚交一区二区三区图片| 欧美高清不卡在线| 亚洲一区二区三区四区中文| 欧美激情在线狂野欧美精品| 欧美电影免费观看网站| 最新亚洲激情| 久久―日本道色综合久久| 欧美久久久久久久久久| 国内精品嫩模av私拍在线观看| 亚洲美女中出| 免费在线观看精品| 亚洲综合精品自拍| 欧美午夜欧美| 亚洲麻豆一区| 猛男gaygay欧美视频| 亚洲一区在线免费观看| 欧美色视频日本高清在线观看| 亚洲激情婷婷| 亚洲国产精品第一区二区| 另类av一区二区| 亚洲精品国精品久久99热| 亚洲成色精品| 欧美日韩免费网站| 性色av一区二区三区| 亚洲欧美日韩国产中文| 国产资源精品在线观看| 欧美成人精品在线播放| 欧美色精品在线视频| 国产精品久久91| 亚洲高清自拍| 久久精品国产亚洲aⅴ| 亚洲欧美激情一区| 国产精品99久久久久久久vr| 欧美日韩国产精品一卡| 亚洲午夜女主播在线直播| 亚洲视频导航| 在线播放国产一区中文字幕剧情欧美| 久久精品中文| 中文一区二区在线观看| 欧美日本韩国| 久久国产毛片| 欧美区高清在线| 久久日韩粉嫩一区二区三区| 免费观看亚洲视频大全| 亚洲一区二区三区乱码aⅴ| avtt综合网| 国产欧美欧美| 一区二区三区四区蜜桃| 在线观看91精品国产入口| 日韩午夜在线视频| 亚洲黑丝一区二区| 亚洲男人影院| 亚洲黄网站黄| 久久久91精品国产一区二区三区 | 国内自拍一区| 亚洲一二三区精品| 日韩亚洲欧美成人| 久久综合久久综合九色| 性久久久久久久久久久久| 欧美日韩国产在线| 91久久久亚洲精品| 亚洲欧洲精品一区| 欧美成年人网| 亚洲精品一区二| 在线亚洲成人| 国产精品尤物福利片在线观看| 亚洲精品国产精品国自产在线 | 性欧美在线看片a免费观看| 亚洲福利免费| 欧美伊人久久大香线蕉综合69| 性伦欧美刺激片在线观看| 国产欧美精品一区二区色综合| 99天天综合性| 欧美一区三区三区高中清蜜桃 | 最新亚洲电影| av不卡在线观看| 国产精品国产三级国产aⅴ无密码| 欧美国产成人在线| 亚洲欧美日韩国产中文 | 西瓜成人精品人成网站| 午夜久久电影网| 在线成人激情黄色| 欧美日韩高清一区| 午夜精品一区二区三区在线播放 | 国产日韩欧美在线视频观看| 亚洲在线免费视频| 亚洲精品久久久久久久久久久久 | 一本色道久久综合狠狠躁篇怎么玩 | 免费中文字幕日韩欧美| 国产精品婷婷午夜在线观看| 一本色道久久综合精品竹菊| 在线视频亚洲| 精品成人在线观看| 一本色道久久88综合亚洲精品ⅰ| 性做久久久久久| 国产夜色精品一区二区av| 久久99在线观看| 亚洲人午夜精品免费| 西西人体一区二区| 欧美一区二区精美| 一区二区三区日韩欧美精品| 尤物在线观看一区| 一区二区欧美在线观看| 亚洲第一搞黄网站| 久久全球大尺度高清视频| 亚洲最新色图| 在线一区欧美| 亚洲网在线观看| 亚洲在线观看免费| 午夜精品久久久久久99热软件 | 这里只有精品视频| 亚洲国产精品嫩草影院| 亚洲欧美卡通另类91av| 一本色道久久加勒比精品| 欧美日韩在线大尺度| 欧美高清免费| 亚洲第一精品夜夜躁人人躁| 欧美一区二区免费视频| 夜夜爽99久久国产综合精品女不卡| 欧美亚洲综合久久| 国产日产高清欧美一区二区三区| 日韩一级片网址| 亚洲精品乱码久久久久久黑人| 欧美一区二区三区在线看| 国产欧美婷婷中文| 欧美在线观看一区二区| 国产精品美女黄网| 很黄很黄激情成人| 国产色产综合产在线视频| 欧美激情综合五月色丁香| 香蕉久久精品日日躁夜夜躁| 亚洲破处大片| 老妇喷水一区二区三区| 亚洲图片欧洲图片日韩av| 亚洲高清视频的网址| 亚洲欧美国产视频| 亚洲少妇诱惑| 一区二区三区视频在线观看| 国产精品久线观看视频| 国产精品夜夜夜一区二区三区尤| 久久全国免费视频| 欧美精品激情| 国产精品电影网站| 一区二区三区日韩欧美精品| 亚洲自拍高清| 一区二区高清| 毛片一区二区三区| 欧美成人综合| 欧美日韩精品综合| 国产婷婷色综合av蜜臀av| 欧美v国产在线一区二区三区| 卡一卡二国产精品| 另类春色校园亚洲| 欧美午夜在线观看| 影音先锋中文字幕一区二区| 亚洲毛片在线观看| 欧美一区二区三区在线免费观看 | 午夜精品电影| 久久福利毛片| 亚洲一区二区在线看| 久久综合九色| 国产日产亚洲精品系列| 欧美日韩ab片| 老牛影视一区二区三区| 亚洲天堂av在线免费观看| 亚洲成人在线免费| 亚洲一区二区3| 久久男人资源视频| 欧美成人精品1314www| 欧美一区二区三区免费看| 久久精品亚洲热| 国产综合精品| 欧美精品久久99| 亚洲欧美日韩综合aⅴ视频| 久久久久久久成人| 亚洲日韩第九十九页| 欧美伦理一区二区| 国产精品国码视频| 欧美1区2区| 亚洲精品乱码久久久久久按摩观| 久久av红桃一区二区小说| 欧美一区二区三区免费观看视频|