完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
转dsp系列教程
本期教程主要讲解复数运算中的模平方,复数乘法和复数乘实数的求解。 18.1 复数模平方 ComplexMagSquared 18.2 复数乘法 ComplexMultComplex 18.3 复数乘实数 ComplexMultComplex 18.4 总结 18.1 复数模平方 ComplexMagSquared 18.1.1 arm_cmplx_mag_squared_f32 公式描述: for(n=0; n pDst[n] = pSrc[(2*n)+0]^2 + pSrc[(2*n)+1]^2; } 函数定义如下: void arm_cmplx_mag_squared_f32(float32_t * pSrc, float32_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrc points to the complex input vector [out] *pDst points to the real output vector [in] numSamples number of complex samples in the input vector 注意事项: 1. 数组pSrc和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
相关推荐
|
|
18.1.2 arm_cmplx_mag_squared_q31
公式描述: for(n=0; n } 函数定义如下: void arm_cmplx_mag_squared_q31(q31_t * pSrc, q31_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrc points to the complex input vector [out] *pDst points to the real output vector [in] numSamples number of complex samples in the input vector 注意事项: 1. 数组pSrc和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.1.3 arm_cmplx_mag_squared_q15
公式描述: for(n=0; n } 函数定义如下: void arm_cmplx_mag_squared_q15(q15_t * pSrc, q15_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrc points to the complex input vector [out] *pDst points to the real output vector [in] numSamples number of complex samples in the input vector 注意事项: 1. 数组pSrc和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.1.4 实例讲解
实验目的: 1. 学习ComplexMathFunctions中模平方的求解 实验内容: 1. 按下按键K1, 串口打印函数DSP_MagSquared的输出结果 实验现象: 通过窗口上位机软件SecureCRT(V5光盘里面有此软件)查看打印信息现象如下: |
|
|
|
|
|
程序设计:
复制代码 /* ********************************************************************************************************* * 函 数 名: DSP_MagSquared * 功能说明: 复数模的平方 * 形 参:无 * 返 回 值: 无 ********************************************************************************************************* */ static void DSP_MagSquared(void) { uint8_t i; float32_t pSrc[10] = {1.1f, 1.1f, 2.1f, 2.1f, 3.1f, 3.1f, 4.1f, 4.1f, 5.1f, 5.1f}; float32_t pDst[10]; q31_t pSrc1[10] = {1*268435456, 1*268435456, 2*268435456, 2*268435456, 3*268435456, 3*268435456, 4*268435456, 4*268435456, 5*268435456, 5*268435456}; q31_t pDst1[10]; q15_t pSrc2[10] = {5000, 10000, 15000, 20000, 25000, 5000, 10000, 15000, 20000, 25000}; q15_t pDst2[10]; /***浮点数模平方*******************************************************************************/ arm_cmplx_mag_squared_f32(pSrc, pDst, 5); for(i = 0; i < 5; i++) { printf("pDst[%d] = %frn", i, pDst[i]); } /***定点数模平方Q31*******************************************************************************/ arm_cmplx_mag_squared_q31(pSrc1, pDst1, 5); for(i = 0; i < 5; i++) { printf("pDst1[%d] = %drn", i, pDst1[i]); } /***定点数模平方Q15*******************************************************************************/ arm_cmplx_mag_squared_q15(pSrc2, pDst2, 5); for(i = 0; i < 5; i++) { printf("pDst2[%d] = %drn", i, pDst2[i]); } } |
|
|
|
|
|
18.2 复数乘法 ComplexMultComplex
18.2.1 arm_cmplx_mult_cmplx_f32 公式描述: for(n=0; n pDst[(2*n)+1] = pSrcA[(2*n)+0] * pSrcB[(2*n)+1] + pSrcA[(2*n)+1] * pSrcB[(2*n)+0]; } 函数定义如下: void arm_cmplx_mult_cmplx_f32( float32_t * pSrcA, float32_t * pSrcB, float32_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrcA points to the first input vector [in] *pSrcB points to the second input vector [out] *pDst points to the output vector [in] numSamples number of complex samples in each vector 注意事项: 1. 数组pSrcA, pSrcB和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.2.2 arm_ cmplx_mult_cmplx_q31
公式描述: for(n=0; n pDst[(2*n)+1] = pSrcA[(2*n)+0] * pSrcB[(2*n)+1] + pSrcA[(2*n)+1] * pSrcB[(2*n)+0]; } 函数定义如下: void arm_cmplx_mult_cmplx_q31( q31_t * pSrcA, q31_t * pSrcB, q31_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrc points to the complex input vector [out] *pDst points to the real output vector [in] numSamples number of complex samples in the input vector 注意事项: 1. 数组pSrcA, pSrcB和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.2.3 arm_cmplx_mult_cmplx_q15
公式描述: for(n=0; n pDst[(2*n)+1] = pSrcA[(2*n)+0] * pSrcB[(2*n)+1] + pSrcA[(2*n)+1] * pSrcB[(2*n)+0]; } 函数定义如下: void arm_cmplx_mult_cmplx_q15( q15_t * pSrcA, q15_t * pSrcB, q15_t * pDst, uint32_t numSamples) 参数定义: [in] *pSrc points to the complex input vector [out] *pDst points to the real output vector [in] numSamples number of complex samples in the input vector 注意事项: 1. 数组pSrcA, pSrcB和pDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.2.4 实例讲解
实验目的: 1. 学习ComplexMathFunctions中复数乘法的求解 实验内容: 1. 按下按键K2, 串口打印函数DSP_CmplxMult的输出结果 实验现象: 通过窗口上位机软件SecureCRT(V5光盘里面有此软件)查看打印信息现象如下: |
|
|
|
|
|
程序设计:
复制代码 /* ********************************************************************************************************* * 函 数 名: DSP_CmplxMult * 功能说明: 复数乘法 * 形 参:无 * 返 回 值: 无 ********************************************************************************************************* */ static void DSP_CmplxMult(void) { uint8_t i; float32_t pSrcA[10] = {1.1f, 1.2f, 2.1f, 2.2f, 3.1f, 3.2f, 4.1f, 4.2f, 5.1f, 5.2f}; float32_t pSrcB[10] = {1.2f, 1.2f, 2.2f, 2.2f, 3.2f, 3.2f, 4.2f, 4.2f, 5.2f, 5.2f}; float32_t pDst[10]; q31_t pSrcA1[10] = {1*268435456, 1*268435456, 2*268435456, 2*268435456, 3*268435456, 3*268435456, 4*268435456, 4*268435456, 5*268435456, 5*268435456}; q31_t pSrcB1[10] = {1*268435456, 1*268435456, 2*268435456, 2*268435456, 3*268435456, 3*268435456, 4*268435456, 4*268435456, 5*268435456, 5*268435456}; q31_t pDst1[10]; q15_t pSrcA2[10] = {5000, 10000, 15000, 20000, 25000, 5000, 10000, 15000, 20000, 25000}; q15_t pSrcB2[10] = {6000, 11000, 15000, 20000, 25000, 5000, 10000, 15000, 20000, 25000}; q15_t pDst2[10]; /***浮点数乘法*******************************************************************************/ arm_cmplx_mult_cmplx_f32(pSrcA, pSrcB, pDst, 5); for(i = 0; i < 5; i++) { printf("pDst[%d] = %f %fjrn", i, pDst[2*i], pDst[2*i+1]); } /***定点数乘法Q31*******************************************************************************/ arm_cmplx_mult_cmplx_q31(pSrcA1, pSrcB1, pDst1, 5); for(i = 0; i < 5; i++) { printf("pDst1[%d] = %d %djrn", i, pDst1[2*i], pDst1[2*i+1]); } /***定点数乘法Q15*******************************************************************************/ arm_cmplx_mult_cmplx_q15(pSrcA2, pSrcB2, pDst2, 5); for(i = 0; i < 5; i++) { printf("pDst1[%d] = %d %djrn", i, pDst2[2*i], pDst2[2*i+1]); } } |
|
|
|
|
|
18.3 复数乘实数 ComplexMultComplex
18.3.1 arm_cmplx_mult_cmplx_f32 公式描述: for(n=0; n pCmplxDst[(2*n)+1] = pSrcCmplx[(2*n)+1] * pSrcReal[n]; } 函数定义如下: void arm_cmplx_mult_real_f32( float32_t * pSrcCmplx, float32_t * pSrcReal, float32_t * pCmplxDst, uint32_t numSamples) 参数定义: [in] *pSrcCmplx points to the complex input vector [in] *pSrcReal points to the real input vector [out] *pCmplxDst points to the complex output vector [in] numSamples number of samples in each vector 注意事项: 1. 数组pSrcCmplx, pCmplxDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.3.2 arm_ cmplx_mult_cmplx_q31
公式描述: for(n=0; n pCmplxDst[(2*n)+1] = pSrcCmplx[(2*n)+1] * pSrcReal[n]; } 函数定义如下: void arm_cmplx_mult_real_q31( q31_t * pSrcCmplx, q31_t * pSrcReal, q31_t * pCmplxDst, uint32_t numSamples) 参数定义: [in] *pSrcCmplx points to the complex input vector [in] *pSrcReal points to the real input vector [out] *pCmplxDst points to the complex output vector [in] numSamples number of samples in each vector 注意事项: 1. 数组pSrcCmplx, pCmplxDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.3.3 arm_cmplx_mult_cmplx_q15
公式描述: for(n=0; n pCmplxDst[(2*n)+1] = pSrcCmplx[(2*n)+1] * pSrcReal[n]; } 函数定义如下: void arm_cmplx_mult_real_q15( q15_t * pSrcCmplx, q15_t * pSrcReal, q15_t * pCmplxDst, uint32_t numSamples) 参数定义: [in] *pSrcCmplx points to the complex input vector [in] *pSrcReal points to the real input vector [out] *pCmplxDst points to the complex output vector [in] numSamples number of samples in each vector 注意事项: 1. 数组pSrcCmplx, pCmplxDst中存储的数据格式是(实部,虚部,实部,虚部……………) |
|
|
|
|
|
18.3.4 实例讲解
实验目的: 1. 学习ComplexMathFunctions中复数乘法的求解 实验内容: 1. 按下按键K3, 串口打印函数DSP_CmplxMultReal的输出结果 实验现象: 通过窗口上位机软件SecureCRT(V5光盘里面有此软件)查看打印信息现象如下: |
|
|
|
|
|
程序设计:
复制代码 /* ********************************************************************************************************* * 函 数 名: DSP_CmplxMultReal * 功能说明: 复数乘实数 * 形 参:无 * 返 回 值: 无 ********************************************************************************************************* */ static void DSP_CmplxMultReal(void) { uint8_t i; float32_t pSrcCmplx[10] = {1.1f, 1.2f, 2.1f, 2.2f, 3.1f, 3.2f, 4.1f, 4.2f, 5.1f, 5.2f}; float32_t pSrcReal[5] = {1.2f, 1.2f, 2.2f, 2.2f, 3.2f}; float32_t pCmplxDst[10]; q31_t pSrcCmplx1[10] = {1*268435456, 1*268435456, 2*268435456, 2*268435456, 3*268435456, 3*268435456, 4*268435456, 4*268435456, 5*268435456, 5*268435456}; q31_t pSrcReal1[10] = {1*268435456, 1*268435456, 2*268435456, 2*268435456, 3*268435456}; q31_t pCmplxDst1[10]; q15_t pSrcCmplx2[10] = {14000, 16000, 20000, 20000, 30000, 31000, 12000, 13000, 14000, 25000}; q15_t pSrcReal2[10] = {15000, 17000, 20000, 20000, 30000}; q15_t pCmplxDst2[10]; /***浮点数*******************************************************************************/ arm_cmplx_mult_cmplx_f32(pSrcCmplx, pSrcReal, pCmplxDst, 5); for(i = 0; i < 5; i++) { printf("pCmplxDst[%d] = %f %fjrn", i, pCmplxDst[2*i], pCmplxDst[2*i+1]); } /***定点数Q31*******************************************************************************/ arm_cmplx_mult_cmplx_q31(pSrcCmplx1, pSrcReal1, pCmplxDst1, 5); for(i = 0; i < 5; i++) { printf("pCmplxDst1[%d] = %d %djrn", i, pCmplxDst1[2*i], pCmplxDst1[2*i+1]); } /***定点数Q15*******************************************************************************/ arm_cmplx_mult_cmplx_q15(pSrcCmplx2, pSrcReal2, pCmplxDst2, 5); for(i = 0; i < 5; i++) { printf("pCmplxDst2[%d] = %d %djrn", i, pCmplxDst2[2*i], pCmplxDst2[2*i+1]); } } |
|
|
|
|
|
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-使用AHT20进行环境监测之AHT20传感器介绍
828 浏览 0 评论
824 浏览 0 评论
861 浏览 1 评论
基于瑞萨FPB-RA4E2智能床头灯项目——1编译环境搭建与点亮驱动ws2812全彩LED
836 浏览 0 评论
嵌入式学习-飞凌嵌入式ElfBoard ELF 1板卡-LCD显示图片编程示例之介绍mmap
1292 浏览 0 评论
【youyeetoo X1 windows 开发板体验】少儿AI智能STEAM积木平台
11822 浏览 31 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-29 12:02 , Processed in 0.988231 second(s), Total 96, Slave 78 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号