摘要: 转载https://blog.csdn.net/weixin_45764003/article/details/108022404 阅读全文
posted @ 2021-01-20 14:58 Connor_Jiao 阅读(1362) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-19 20:35 Connor_Jiao 阅读(363) 评论(0) 推荐(0) 编辑
摘要: http://www.360doc.com/content/16/1129/10/22873936_610384941.shtml 阅读全文
posted @ 2021-01-18 19:29 Connor_Jiao 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 公式一:设α为任意角,终边相同的角的同一三角函数的值相等 sin(2kπ+α)=sinα(k∈Z) cos(2kπ+α)=cosα(k∈Z) tan(2kπ+α)=tanα(k∈Z) cot(2kπ+α)=cotα(k∈Z) 公式二:设α为任意角,π+α的三角函数值与α的三角函数值之间的关系 sin 阅读全文
posted @ 2021-01-15 20:29 Connor_Jiao 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 编码格式是UTF-8-BOM,而不是UTF-8 阅读全文
posted @ 2021-01-15 17:58 Connor_Jiao 阅读(661) 评论(0) 推荐(0) 编辑
摘要: 离散傅里叶变换-DFT(FFT基础) https://blog.csdn.net/zhangxz259/article/details/81627341 https://blog.csdn.net/qq295456059/article/details/50354222 https://zhuanl 阅读全文
posted @ 2021-01-14 16:36 Connor_Jiao 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include<math.h> #define pi 3.1415926 #define N 16//16个点 typedef struct { double real,imag; } complex;//复数结构体 c 阅读全文
posted @ 2021-01-13 21:58 Connor_Jiao 阅读(96) 评论(0) 推荐(0) 编辑
摘要: function [ Xk ] = DFT( xn,N ) %定于DFT算法 xxn=zeros(1,N);%构造1*N的零矩阵 xxn(1:length(xn))=xn; %将形参赋值进来 Xk=ones(1,N);%构造1*N的全1矩阵 Wn=exp(-1i*2*pi/N);% wn=ones( 阅读全文
posted @ 2021-01-13 20:39 Connor_Jiao 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 使用A模式 为何配置这些寄存器呢? 野火的霸道开发板sram连接图 阅读全文
posted @ 2021-01-11 20:40 Connor_Jiao 阅读(347) 评论(0) 推荐(0) 编辑
摘要: HSI:high speed internal HSE:hign speed external LSI:low speed internal LSE:low speed external 阅读全文
posted @ 2021-01-09 14:32 Connor_Jiao 阅读(74) 评论(0) 推荐(0) 编辑