期刊文献+
共找到41,654篇文章
< 1 2 250 >
每页显示 20 50 100
A sparse moving array imaging approach for FMCW radar with dualaperture adaptive azimuth ambiguity suppression and adaptive QR decomposition
1
作者 Yanwen Han Xiaopeng Yan +3 位作者 Jiawei Wang Sheng Zheng Hongrui Yu Jian Dai 《Defence Technology(防务技术)》 2025年第8期254-271,共18页
Range-azimuth imaging of ground targets via frequency-modulated continuous wave(FMCW)radar is crucial for effective target detection.However,when the pitch of the moving array constructed during motion exceeds the phy... Range-azimuth imaging of ground targets via frequency-modulated continuous wave(FMCW)radar is crucial for effective target detection.However,when the pitch of the moving array constructed during motion exceeds the physical array aperture,azimuth ambiguity occurs,making range-azimuth imaging on a moving platform challenging.To address this issue,we theoretically analyze azimuth ambiguity generation in sparse motion arrays and propose a dual-aperture adaptive processing(DAAP)method for suppressing azimuth ambiguity.This method combines spatial multiple-input multiple-output(MIMO)arrays with sparse motion arrays to achieve high-resolution range-azimuth imaging.In addition,an adaptive QR decomposition denoising method for sparse array signals based on iterative low-rank matrix approximation(LRMA)and regularized QR is proposed to preprocess sparse motion array signals.Simulations and experiments show that on a two-transmitter-four-receiver array,the signal-to-noise ratio(SNR)of the sparse motion array signal after noise suppression via adaptive QR decomposition can exceed 0 dB,and the azimuth ambiguity signal ratio(AASR)can be reduced to below-20 dB. 展开更多
关键词 Frequency modulated continuous wave (FMCW) Sparse motion array Range-azimuth imaging Azimuth ambiguity suppression DAAP Adaptive QR decomposition
在线阅读 下载PDF
基于Matrix Core的高性能多维FFT设计与优化 被引量:1
2
作者 陆璐 祝松祥 +2 位作者 田卿燕 林海山 郭逸劼 《华南理工大学学报(自然科学版)》 北大核心 2025年第3期20-30,共11页
快速傅里叶变换(FFT)算法广泛应用于科学计算等领域。为了充分挖掘图形处理器(GPU)的计算能力并进一步提高FFT的计算效率,该文针对矩阵形式的Stockham FFT,提出了一种基于Matrix Core的高性能多维FFT计算方案。在计算优化方面,该方案利... 快速傅里叶变换(FFT)算法广泛应用于科学计算等领域。为了充分挖掘图形处理器(GPU)的计算能力并进一步提高FFT的计算效率,该文针对矩阵形式的Stockham FFT,提出了一种基于Matrix Core的高性能多维FFT计算方案。在计算优化方面,该方案利用Matrix Core加速FFT计算中的矩阵乘运算,同时通过编译器内部指令完成小粒度的矩阵乘加,使得Matrix Core支持更多尺寸的FFT计算。在内存优化方面,该方案使用2层迭代策略,以充分利用共享内存,减少与全局内存的数据交换;根据Matrix Core的矩阵数据在各个线程寄存器中的分布规律,直接在寄存器上完成FFT计算中大量存在的矩阵逐元素乘操作;通过对共享内存中的数据进行重排来缓解存储体冲突,并采用双缓冲策略缓解访存瓶颈。该文还提出了高效的矩阵转置策略,以加速多维FFT计算。在AMD MI250 GPU平台上将该方案与GPU上主流的高性能FFT计算库rocFFT和VkFFT进行了比较实验,结果表明:该方案在AMD MI250上的1维、2维和3维FFT平均计算效率均优于rocFFT和VkFFT,3维FFT的平均计算效率为rocFFT的1.5倍,为VkFFT的2.0倍,具有较好的性能提升;mcFFT的计算精度与rocFFT和VkFFT保持在相同水平。 展开更多
关键词 图形处理器 matrix Core 快速傅里叶变换 矩阵乘法
在线阅读 下载PDF
基于Matrix Core的小尺寸批量矩阵乘法设计与优化
3
作者 陆璐 赵容 +1 位作者 梁志宏 索思亮 《华南理工大学学报(自然科学版)》 北大核心 2025年第9期48-58,共11页
通用矩阵乘法(GEMM)是线性代数中最重要的运算,来自不同科学领域的许多应用程序都将其关键部分转换为使用GEMM的形式。GEMM广泛应用于大模型、机器学习、科学计算和信号处理等领域。特别是半精度的批处理GEMM(即FP16)一直是许多深度学... 通用矩阵乘法(GEMM)是线性代数中最重要的运算,来自不同科学领域的许多应用程序都将其关键部分转换为使用GEMM的形式。GEMM广泛应用于大模型、机器学习、科学计算和信号处理等领域。特别是半精度的批处理GEMM(即FP16)一直是许多深度学习框架的核心操作。目前AMD GPU上半精度批处理GEMM的访存和计算利用率不足,急需优化。为此,该文提出了一种半精度批处理GEMM(HGEMM)的图形处理器(GPU)优化方案。分块策略方面,根据输入矩阵块大小为线程分配相同的访存量和计算量,同时线程计算多个矩阵乘法,以提高计算单元的利用率。访存优化方面,以多读数据为代价,为每个线程分配相同访存量以便于编译器优化,保证访存和计算时间相互掩盖。对于矩阵尺寸小于16的极小尺寸批处理HGEMM,该文利用4×4×4的Matrix Core及其对应的分块方案,在提升访存性能的同时减少Matrix Core计算资源的浪费,并提供是否使用共享内存的选项来达到最高性能。在AMD GPU MI210平台上,将该方案与rocBLAS的2个算子进行性能对比,结果表明:该方案在AMD GPU MI210上的平均性能为rocBLASHGEMMBatched的4.14倍,rocBLASGEMMExBatched的4.96倍;对于极小尺寸批处理HGEMM,平均性能为rocBLASHGEMMBatched的18.60倍,rocBLASGEMMExBatched的14.02倍。 展开更多
关键词 图形处理器 matrix Core 矩阵乘法 访存优化
在线阅读 下载PDF
The application of multi-scale magnetic matrix materials in high-gradient magnetic separation:From micro-and nano-to millimeter-scale
4
作者 WANG Dong KU Jian-gang +3 位作者 LEI Zhong-yun LI Xin YAN Ju-jian WANG Qian 《Journal of Central South University》 2025年第4期1299-1326,共28页
Micro-and nano-to millimeter-scale magnetic matrix materials have gained widespread application due to their exceptional magnetic properties and favorable cost-effectiveness.With the rapid progress in condensed matter... Micro-and nano-to millimeter-scale magnetic matrix materials have gained widespread application due to their exceptional magnetic properties and favorable cost-effectiveness.With the rapid progress in condensed matter physics,materials science,and mineral separation technologies,these materials are now poised for new opportunities in theoretical research and development.This review provides a comprehensive analysis of these matrices,encompassing their structure,size,shape,composition,properties,and multifaceted applications.These materials,primarily composed of alloys of transition state metasl such as iron(Fe),cobalt(Co),titanium(Ti),and nickel(Ni),exhibit unique attributes like high magnetization rates,low eleastic modulus,and high saturation magnetic field strengths.Furthermore,the studies also delve into the complex mechanical interactions involved in the separation of magnetic particles using magnetic separator matrices,including magnetic,gravitational,centrifugal,and van der Waals forces.The review outlines how size and shape effects influence the magnetic behavior of matrices,offering new perspectives for innovative applications of magnetic matrices in various domains of materials science and magnetic separation. 展开更多
关键词 magnetic matrix materials magnetic separation micro-and nano-magnetic matrix millimeter magnetic matrix
在线阅读 下载PDF
Modeling the electronic band-structure of strained long-wavelength Type-Ⅱsuperlattices using the scattering matrix method
5
作者 Abbas Haddadi Gail Brown Manijeh Razeghi 《红外与毫米波学报》 北大核心 2025年第3期346-351,共6页
This study introduces a comprehensive theoretical framework for accurately calculating the electronic band-structure of strained long-wavelength InAs/GaSb type-Ⅱsuperlattices.Utilizing an eight-band k·p Hamilto⁃... This study introduces a comprehensive theoretical framework for accurately calculating the electronic band-structure of strained long-wavelength InAs/GaSb type-Ⅱsuperlattices.Utilizing an eight-band k·p Hamilto⁃nian in conjunction with a scattering matrix method,the model effectively incorporates quantum confinement,strain effects,and interface states.This robust and numerically stable approach achieves exceptional agreement with experimental data,offering a reliable tool for analyzing and engineering the band structure of complex multi⁃layer systems. 展开更多
关键词 type-Ⅱsuperlattices long-wavelength infrared(LWIR) scattering matrix method electronic band-structure modeling InAs/GaSb heterostructures infrared photodetectors bandgap engineering
在线阅读 下载PDF
Mechanical properties and wear behavior of extruded basalt fibers/7075 aluminum matrix composites used for drill pipes
6
作者 MA Yin-long SUN Zhi-gang +3 位作者 XIONG Hong-wei REN Jie ZHAO Jing-jing GUO Cheng-bin 《Journal of Central South University》 2025年第1期21-33,共13页
Basalt fibers/7075 aluminum matrix composites were studied to meet the demand of aluminum alloy drill pipes for material wear resistance.The composites with different basalt fiber additions were prepared by hot presse... Basalt fibers/7075 aluminum matrix composites were studied to meet the demand of aluminum alloy drill pipes for material wear resistance.The composites with different basalt fiber additions were prepared by hot pressed sintering and hot extrusion.The mechanical properties as well as friction and wear properties of the composites were studied by microstructure analysis,tensile experiments,friction and wear experiments.The results showed that basalt fibers were oriented and uniformly distributed and led to local grain refinement in the alloy matrix.The hardness and elongation of the composites were improved.The friction coefficient of the composites increased and then decreased,and the maximum wear depth and wear amount decreased,then increased,then decreased again with the growth of basalt fiber addition.Meanwhile,the inclusion of basalt fibers mitigated the uneven wear of the extruded 7075 aluminum alloy.The value of wear depth difference of 7075-0.2BF was the smallest,and that of 7075-2.0BF was close to it.The maximum wear depth and wear volume the 7075-0.2BF and 7075-2.0BF were also the smallest.The inhibition of uneven wear by basalt fibers enhanced of wear resistance for 7075 aluminum alloy,which has reference significance for improving the performance of aluminum alloy drill pipes. 展开更多
关键词 aluminum matrix composites basalt fibers mechanical properties wear behavior
在线阅读 下载PDF
基于Radon-Ambiguity变换的多分量LFM信号检测与参数估计 被引量:12
7
作者 刘爱芳 朱晓华 +1 位作者 陆锦辉 刘中 《南京理工大学学报》 EI CAS CSCD 北大核心 2004年第4期409-413,共5页
介绍了Radon -Ambiguity变换 (RAT)的定义和基本性质 ,结合解线调技术提出了一种基于RAT的线性调频 (LFM )信号检测与参数估计方法 ,该方法能用较少的计算量完成对LFM信号的检测与参数估计。为解决多分量条件下LFM信号分量之间交叉项的... 介绍了Radon -Ambiguity变换 (RAT)的定义和基本性质 ,结合解线调技术提出了一种基于RAT的线性调频 (LFM )信号检测与参数估计方法 ,该方法能用较少的计算量完成对LFM信号的检测与参数估计。为解决多分量条件下LFM信号分量之间交叉项的影响 ,基于逐次消去思想 ,提出了一种基于RAT的多分量LFM信号检测与参数估计算法 ,它可以有效地解决强度相差较大的多分量LFM信号的检测和参数估计问题。仿真实验结果验证了该算法的有效性。 展开更多
关键词 Radon—ambiguity变换 线性调频信号 参数估计
在线阅读 下载PDF
分级计算迭代在Radon-Ambiguity变换和分数阶Fourier变换对chirp信号检测及参数估计的应用 被引量:18
8
作者 郭斌 张红雨 《电子与信息学报》 EI CSCD 北大核心 2007年第12期3024-3026,共3页
该文在分析Radon-Ambiguity变换(RAT)和分数阶Fourier变换对chirp信号的检测和参数估计的基础上,建立了多分量chirp信号检测和参数估计系统模型,提出了分级计算迭代方法,大大减少了计算量,提高了运算速度。
关键词 分数阶FOURIER变换 Radon—ambiguity变换 CHIRP信号
在线阅读 下载PDF
基于Radon-Ambiguity变换和分数阶傅里叶变换的chirp信号检测及多参数估计 被引量:43
9
作者 赵兴浩 陶然 +1 位作者 周思永 王越 《北京理工大学学报》 EI CAS CSCD 北大核心 2003年第3期371-374,377,共5页
研究噪声环境中chirp信号的检测以及多参数估计问题.分析和比较了Radon-Wigner变换(RWT)法、Radon-Ambiguity变换(RAT)法和分数阶傅里叶变换(FRFT)扫描法的优缺点.提出了一种基于RAT和FRFT的新算法,并提出了幅度估计的一种适合于计算的... 研究噪声环境中chirp信号的检测以及多参数估计问题.分析和比较了Radon-Wigner变换(RWT)法、Radon-Ambiguity变换(RAT)法和分数阶傅里叶变换(FRFT)扫描法的优缺点.提出了一种基于RAT和FRFT的新算法,并提出了幅度估计的一种适合于计算的表达式.最后通过计算机仿真验证了该方法的有效性.这种方法与RWT法和FRFT扫描法相比,将chirp信号的检测问题变为一维搜索问题,简化了计算,与单纯的RAT法相比,有效地解决了chirp信号的初始频率和幅度的估计问题.因此,适合于对chirp信号多参数联合估计. 展开更多
关键词 分数阶傅里叶变换 RADON-ambiguity变换 CHIRP信号 多参数估计
在线阅读 下载PDF
基于Radon-ambiguity变换的ISAR成像算法 被引量:4
10
作者 刘爱芳 刘中 陆锦辉 《现代雷达》 CSCD 北大核心 2003年第6期12-14,34,共4页
非匀速旋转目标和机动目标成像是逆合成孔径雷达 (ISAR)技术的一个重点和难点 ,经典的距离 -多普勒(RD)算法对其成像效果不佳。本文首先分析了ISAR成像回波信号模型 ,然后在对目标多普勒变化曲线作一阶近似的条件下提出了基于Radon Ambi... 非匀速旋转目标和机动目标成像是逆合成孔径雷达 (ISAR)技术的一个重点和难点 ,经典的距离 -多普勒(RD)算法对其成像效果不佳。本文首先分析了ISAR成像回波信号模型 ,然后在对目标多普勒变化曲线作一阶近似的条件下提出了基于Radon Ambiguity变换 (RAT)的ISAR成像算法。最后进行仿真实验 ,仿真实验结果表明了该方法的有效性。 展开更多
关键词 RADON-ambiguity变换 逆合成孔径雷达 ISAR RAT 成像算法 线性调频信号
在线阅读 下载PDF
基于局部Radon-Ambiguity变换的ARM检测技术 被引量:2
11
作者 方前学 王永良 王首勇 《系统工程与电子技术》 EI CSCD 北大核心 2008年第11期2151-2154,共4页
针对反辐射导弹(anti-radiation missile,ARM)雷达回波信号的调频率特性,提出了基于局部Radon-Ambiguity变换(RAT)的ARM检测方法。该方法对导弹的初速度不敏感,也不需要对导弹加速度进行多通道相位补偿预处理。通过将RAT局部化,进一步... 针对反辐射导弹(anti-radiation missile,ARM)雷达回波信号的调频率特性,提出了基于局部Radon-Ambiguity变换(RAT)的ARM检测方法。该方法对导弹的初速度不敏感,也不需要对导弹加速度进行多通道相位补偿预处理。通过将RAT局部化,进一步缩小了检测区域和运算量,提高了检测效率。检测性能分析和仿真实验表明,该方法能够在较低信噪比环境下有效地检测ARM目标信号。 展开更多
关键词 目标检测 局部Radon-ambiguity变换 线性调频信号 反辐射导弹
在线阅读 下载PDF
在单脉冲内基于Radon-Ambiguity变换的加速度估计方法研究 被引量:4
12
作者 贾舒宜 王国宏 杜文超 《宇航学报》 EI CAS CSCD 北大核心 2008年第3期989-994,共6页
根据雷达发射恒定载频信号时匀加速目标回波为线性调频(LFM)信号的特点,研究了在单脉冲内基于Radon-Ambiguity变换(RAT)估计目标径向加速度的问题,首先采用Radon-Ambiguity变换(RAT)得到信号的调频斜率,进而根据调频斜率估计出目标径向... 根据雷达发射恒定载频信号时匀加速目标回波为线性调频(LFM)信号的特点,研究了在单脉冲内基于Radon-Ambiguity变换(RAT)估计目标径向加速度的问题,首先采用Radon-Ambiguity变换(RAT)得到信号的调频斜率,进而根据调频斜率估计出目标径向加速度。分析了加速度分辨率和加速度估计效率,讨论了信号时长和搜索步长对测量加速度精度的影响,最后仿真实验结果验证了方法的有效性。 展开更多
关键词 RADON-ambiguity变换 径向加速度 线性调频信号 RADON-WIGNER变换 WIGNER-HOUGH变换
在线阅读 下载PDF
基于Radon-Ambiguity变换和解调频技术的SAR运动目标检测 被引量:2
13
作者 姜义成 韩逸飞 《现代雷达》 CSCD 北大核心 2005年第5期41-44,共4页
详细探讨了合成孔径雷达中运动目标的检测问题,根据机载合成孔径雷达运动目标回波信号的特点,提出了基于Radon- Ambiguity变换和解调频技术的一种新的机载运动目标检测方法,给出了动目标检测、参数估计的主要步骤,分析了在单目标和多目... 详细探讨了合成孔径雷达中运动目标的检测问题,根据机载合成孔径雷达运动目标回波信号的特点,提出了基于Radon- Ambiguity变换和解调频技术的一种新的机载运动目标检测方法,给出了动目标检测、参数估计的主要步骤,分析了在单目标和多目标情况下的检测性能。该方法与常用的Wigner- Ville分布和Radon变换结合的方法相比计算量明显减少,在多目标情况下能够较好地抑制交叉项,提高检测性能。且使用解调频技术与RAT相配合,解决了单纯RAT无法估计Chirp信号初始频率的问题。仿真试验结果证明了算法的有效性。 展开更多
关键词 合成孔径雷达 运动目标检测 RADON-ambiguity变换 解调频技术
在线阅读 下载PDF
基于Radon-Ambiguity变换的LFM信号时/频差快速联合估计 被引量:1
14
作者 杨林森 张子敬 郭付阳 《电波科学学报》 EI CSCD 北大核心 2016年第6期1074-1080,共7页
提出了一种基于Radon-Ambiguity变换(Radon-Ambiguity Transform,RAT)的线性调频(Linear Frequency Modulated,LFM)信号时/频差快速联合估计的算法.根据LFM信号在多个不同角度上的RAT峰值位置建立一组以信号间时差和频差为未知量的方程... 提出了一种基于Radon-Ambiguity变换(Radon-Ambiguity Transform,RAT)的线性调频(Linear Frequency Modulated,LFM)信号时/频差快速联合估计的算法.根据LFM信号在多个不同角度上的RAT峰值位置建立一组以信号间时差和频差为未知量的方程组,求解方程组即可得到时/频差的估计值.对于存在噪声的信号,RAT误差会导致方程组不能直接求解,为了抑制噪声干扰,采用最小二乘法估计时/频差.本文算法无需计算二维平面上各点的模糊函数值,并且由于离散RAT可以通过快速傅里叶变换快速实现,具有所需运算量低的优点.仿真实验表明,相比于常见的基于模糊函数峰值搜索的时/频差估计算法,本文算法在保证时/频差估计精度的同时能够显著提高运算效率. 展开更多
关键词 RADON-ambiguity变换 最小二乘法 时/频差 线性调频信号
在线阅读 下载PDF
Ultrasonic signal classification based on ambiguity plane feature 被引量:4
15
作者 Du Xiuli Wang Yan Shen Yi 《Journal of Systems Engineering and Electronics》 SCIE EI CSCD 2009年第2期427-433,共7页
Ambiguity function (AF) is proposed to represent ultrasonic signal to resolve the preprocessing problem of different center frequencies and different arriving times among ultrasonic signals for feature extraction, a... Ambiguity function (AF) is proposed to represent ultrasonic signal to resolve the preprocessing problem of different center frequencies and different arriving times among ultrasonic signals for feature extraction, as well as offer time-frequency features for signal classification. Moreover, Karhunen-Loeve (K-L) transform is considered to extract signal features from ambiguity plane, and then the features are presented to probabilistic neural network (PNN) for signal classification. Experimental results show that ambiguity function eliminates the difference of center frequency and arriving time existing in ultrasonic signals, and ambiguity plane features extracted by K-L transform describe the signal of different classes effectively in a reduced dimensional space. Classification result suggests that the ambiguity plane features obtain better performance than the features extracted by wavelet transform (WT). 展开更多
关键词 ultrasonic testing signal classification ambiguity function K-L transform
在线阅读 下载PDF
Improvement of GPS ambiguity resolution using prior height information. Part Ⅰ: The method by using height validation 被引量:5
16
作者 朱建军 Rock Santerre 《Journal of Central South University of Technology》 2002年第3期186-190,共5页
It is an attractive method to combine GPS observations with the information from other surveying system to improve the ambiguity resolution. This research is conducted to investigate how to obtain the prior height inf... It is an attractive method to combine GPS observations with the information from other surveying system to improve the ambiguity resolution. This research is conducted to investigate how to obtain the prior height information in bathymetric surveying by GPS positioning and how to use the prior height information and to obtain a robust result. The authors deal with the collection and the description of the prior height and the method using height validation to improve the ambiguity resolution. The principle of the method, the relationships between the height threshold and the ambiguity search space are presented. A method to determine the threshold for the height validation is suggested. The field tests are carried out to show the feasibility of the proposed methods. 展开更多
关键词 ambiguity resolution HEIGHT VALIDATION ROBUSTNESS OTF techniques
在线阅读 下载PDF
Research on ambiguity resolution aided with triple difference 被引量:2
17
作者 Liu Zhenkun Huang Shunji 《Journal of Systems Engineering and Electronics》 SCIE EI CSCD 2008年第6期1090-1096,共7页
The ambiguity resolution in the field of GPS is investigated in detail. A new algorithm to resolve the ambiguity is proposed. The algorithm first obtains the floating resolution of the ambiguity aided with triple diff... The ambiguity resolution in the field of GPS is investigated in detail. A new algorithm to resolve the ambiguity is proposed. The algorithm first obtains the floating resolution of the ambiguity aided with triple difference measurement. Decorrelation of searching space is done by reducing the ambiguity covariance matrix's dimension to overcome the possible sick factorization of the matrix brought by Z-transformation. In simulation, the proposed algorithm is compared with least-squares ambiguity decorrelation adjustment (LAMBDA). The result shows that the proposed algorithm is better than LAMBDA because of lesser resolving time, which approximately reduces 20% resolving time. Thus, the proposed algorithm adapts to the high dynamic real-time applications. 展开更多
关键词 carrier phase measurement integer ambiguity triple-difference measurement decorrelation.
在线阅读 下载PDF
Extended ambiguity function for bistatic MIMO radar 被引量:2
18
作者 Haowen Chen Yiping Chen +1 位作者 Zhaocheng Yang Xiang Li 《Journal of Systems Engineering and Electronics》 SCIE EI CSCD 2012年第2期195-200,共6页
This paper derives the extended ambiguity function for a bistatic multiple-input multiple-output (MIMO) radar system, which includes the whole radar system parameters: geometric sensor configuration, waveforms, ran... This paper derives the extended ambiguity function for a bistatic multiple-input multiple-output (MIMO) radar system, which includes the whole radar system parameters: geometric sensor configuration, waveforms, range, range rate, target scattering and noise characteristics. Recent research indicates the potential pa- rameter estimate performance of bistatic MIMO radars. And this ambiguity function can be used to analyze the parameter estimate performance for the relationship with the Cramer-Rao bounds of the estimated parameters. Finally, some examples are given to demonstrate the good parameter estimate performance of the bistatic MIMO radar, using the quasi-orthogonal waveforms based on Lorenz chaotic systems. 展开更多
关键词 bistatic multiple-input multiple-output (MIMO) radar ambiguity function parameter estimate Cramer-Rao bound (CRB) quasi-orthogonal waveforms.
在线阅读 下载PDF
Solving single-frequency phase ambiguity using parameter weights fitting and constrained equation ambiguity resolution methods 被引量:6
19
作者 阳仁贵 欧吉坤 +3 位作者 袁运斌 张克非 闻德保 Ron Grenfell 《Journal of Central South University of Technology》 EI 2006年第1期93-98,共6页
Based on the structural characteristics of the double-differenced normal equation, a new method was proposed to resolve the ambiguity float solution through a selection of parameter weights to construct an appropriate... Based on the structural characteristics of the double-differenced normal equation, a new method was proposed to resolve the ambiguity float solution through a selection of parameter weights to construct an appropriate regularized matrix, and a singular decomposition method was used to generate regularization parameters. Numerical test results suggest that the regularized ambiguity float solution is more stable and reliable than the least-squares float solution. The mean square error matrix of the new method possesses a lower correlation than the variancecovariance matrix of the least-squares estimation. The size of the ambiguity search space is reduced and the search efficiency is improved. The success rate of the integer ambiguity searching process is improved significantly when the ambiguity resolution by using constraint equation method is used to determine the correct ambiguity integervector. The ambiguity resolution by using constraint equation method requires an initial input of the ambiguity float solution candidates which are obtained from the LAMBDA method in the new method. In addition, the observation time required to fix reliable integer ambiguities can he significantly reduced. 展开更多
关键词 global position system ill-conditioned state parameter weight fitting method constraint equation integer ambiguity
在线阅读 下载PDF
Ambiguity function analysis and side peaks suppression of Link16 signal based passive radar 被引量:1
20
作者 BAI Luyang WANG Jun CHEN Xiaoling 《Journal of Systems Engineering and Electronics》 SCIE EI CSCD 2023年第6期1526-1536,共11页
Link16 data link is the communication standard of the joint tactical information distribution system(JTIDS)used by the U.S.military and North Atlantic Treaty Organization,which is applied as the opportunistic illumina... Link16 data link is the communication standard of the joint tactical information distribution system(JTIDS)used by the U.S.military and North Atlantic Treaty Organization,which is applied as the opportunistic illuminator for passive radar in this paper.The time-domain expression of the Link16 signal is established,and its ambiguity function expression is derived.The timedelay dimension and Doppler dimension side peaks of which lead to the appearance of the false target during target detection.To solve the problem,the time-delay dimension and Doppler dimension side peaks suppression methods are proposed.For the problem that the conventional mismatched filter(MMF)cannot suppress the time-delay dimension side peaks,a neighborhood MMF(NMMF)is proposed.Experimental results demonstrate the effectiveness of the proposed methods. 展开更多
关键词 passive radar ambiguity function LINK16 mismatched filter(MMF)
在线阅读 下载PDF
上一页 1 2 250 下一页 到第
使用帮助 返回顶部