二阶互补滤波器原理是什么啊??

飛饵 2018-11-13 10:23:26
最近在做平衡小车,角度融合我试了下一阶互补滤波,效果一般般,参数没调好的话有很大的滞后,而且不够平滑。

然后网上找了二阶互补的代码,没看明白,能不能通俗点解释下?

float K2 =0.2; // 对加速度计取值的权重
float x1,x2,y1; //运算中间变量
float angle ;//滤波角度输出

void Erjielvbo(float angle_m,float gyro_m)
{
x1 = (angle_m - angle) * (1 - K2) * (1 - K2);
y1 = y1 + x1 * dt;
x2 = y1 + 2 * (1 - K2) * (angle_m - angle2) + gyro_m;
angle = angle + x2 * dt;
}

angle_m:加速度求出的角度
gyro_m:角速度
dt:积分时间


卡尔曼滤波太复杂了,先不考虑。

...全文
887 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
源代码大师 2021-05-06
  • 打赏
  • 举报
回复
希望对你有帮助:https://blog.csdn.net/it_xiangqiang/category_10581430.html 希望对你有帮助:https://blog.csdn.net/it_xiangqiang/category_10768339.html
TMXKT 2021-03-19
  • 打赏
  • 举报
回复
不难,基础要好一点就能推出来!
issacfrog周 2019-05-23
  • 打赏
  • 举报
回复
http://www.doc88.com/p-2819102704066.html 看看这篇文章,多加了一层积分
飛饵 2018-12-04
  • 打赏
  • 举报
回复
引用 1 楼 P_zz 的回复:
https://blog.csdn.net/seek97/article/details/81294097?utm_source=blogkpcl6 看看这篇
一阶互补我理解了,就是二阶的不懂
P_zz 2018-11-29
  • 打赏
  • 举报
回复
https://blog.csdn.net/seek97/article/details/81294097?utm_source=blogkpcl6 看看这篇
电路原理-清华大学-于歆杰、朱桂萍、陆文娟等 docs[09D11692].rar │ srt[3391CCD7].rar │ 免责声明.txt │ 抓取档目录结构.txt │ 课程介绍及抓取说明.txt │ 课程封面图-电路原理.jpg │ 课程简介-电路原理.mp4 │ ├─第0周 数学基础,什么是电路? (Math basics, what is the circuit) │ ├─第0讲 数学基础知识(Math basics for circuits) │ │ 0 数学基础知识(Math basics for circuits)(1).mp4 │ │ 1 数学基础知识(Math basics for circuits)(2).mp4 │ │ 2 数学基础知识(Math basics for circuits)(3).mp4 │ │ 3 数学基础知识(Math basics for circuits)(4).mp4 │ │ 4 数学基础知识(Math basics for circuits)(5).mp4 │ │ 5 数学基础知识(Math basics for circuits)(6).mp4 │ │ 6 数学基础知识(Math basics for circuits)(7).mp4 │ │ │ ├─第1讲 为什么要学习电路(why learn circuits) │ │ 0 为什么要学习电路(why learn circuits)(1).mp4 │ │ 1 为什么要学习电路(why learn circuits)(2).mp4 │ │ │ └─第2讲 电路(circuits) │ 0 电路(circuits) (1).mp4 │ 1 电路(circuits) ( 2).mp4 │ ├─第10周_ 二阶电路和状态方程(Second-order Circuits and and State Equations) │ │ 第56讲 并联RLC二阶电路(parallel RLC second-order circuits).mp4 │ │ │ ├─第55讲 串联RLC二阶电路(serial RLC second-order circuits) │ │ 0 第55讲 串联RLC二阶电路(1).mp4 │ │ 1 第55讲 串联RLC二阶电路(2).mp4 │ │ 2 第55讲 串联RLC二阶电路(3).mp4 │ │ 3 第55讲 串联RLC二阶电路(4).mp4 │ │ 4 第55讲 串联RLC二阶电路(5).mp4 │ │ 5 第55讲 串联RLC二阶电路(6).mp4 │ │ 6 第55讲 串联RLC二阶电路(7).mp4 │ │ 7 第55讲 串联RLC二阶电路(8).mp4 │ │ 8 第55讲 串联RLC二阶电路(9).mp4 │ │ 9 第55讲 串联RLC二阶电路(10).mp4 │ │ │ ├─第57讲 二阶电路直觉解法(intuitive method for second-order circuits) │ │ 0 第57讲 二阶电路直觉解法(1).mp4 │ │ 1 第57讲 二阶电路直觉解法(2).mp4 │ │ 2 第57讲 二阶电路直觉解法(3).mp4 │ │ 3 第57讲 二阶电路直觉解法(4).mp4 │ │ 4 第57讲 二阶电路直觉解法(5).mp4 │ │ │ └─第58讲 二阶电路的应用(applications of second-order circuits) │ 0 第58讲 二阶电路的应用(1).mp4 │ 1 第58讲 二阶电路的应用(2).mp4 │ 2 第58讲 二阶电路的应用(3).mp4 │ ├─第11周_ 正弦稳态电路的相量法和功率( Phasor Method and Powers in Sinusoidal Steady State Circuits ) │ │ 仿真5(Simulation 5).mp4 │ │ 第60讲 电力系统(power system).mp4 │ │ 第68讲 复功率(complex power).mp4 │ │ │ ├─第59讲 正弦波(sine wave) │ │ 0 第59讲 正弦波(1).mp4 │ │ 1 第59讲 正弦波(2).mp4 │ │ │ ├─第61讲 相量(phasor) │ │ 0 第61讲 相量(1).mp4 │ │ 1 第61讲 相量(2).mp4 │ │ 2 第61讲 相量(3).mp4 │ │ 3 第61讲 相量(4).mp4 │ │ 4 第61讲 相量(5).mp4 │ │ │ ├─第62讲 KCL和KVL的相量形式(phasor form of KCL and KVL) │ │ 0 第62讲 KCL和KVL的相量形式(1).mp4 │ │ 1 第62讲 KCL和KVL的相量形式(2).mp4 │ │ │ ├─第63讲 RLC的相量关系(phasor relationship of RLC) │ │ 0 第63讲 RLC的相量关系(1).mp4 │ │ 1 第63讲 RLC的相量关系(2).mp4 │ │ 2 第63讲 RLC的相量关系(3).mp4 │ │ 3 第63讲 RLC的相量关系(4).mp4 │ │ │ ├─第64讲 正弦稳态电路相量法(phasor method for sinusoidal steady state circuits) │ │ 0 第64讲 正弦稳态电路相量法(1).mp4 │ │ 1 第64讲 正弦稳态电路相量法(2).mp4 │ │ 2 如何利用计算做复数代数计算.mp4 │ │ 3 第64讲 正弦稳态电路相量法(3).mp4 │ │ 4 第64讲 正弦稳态电路相量法(4).mp4 │ │ │ ├─第65讲 瞬时功率(instantaneous power) │ │ 0 第65讲 瞬时功率(1).mp4 │ │ 1 第65讲 瞬时功率(2).mp4 │ │ │ ├─第66讲 平均功率(average power) │ │ 0 第66讲 平均功率(1).mp4 │ │ 1 第66讲 平均功率(2).mp4 │ │ 2 第66讲 平均功率(3).mp4 │ │ │ └─第67讲 无功功率和视在功率(reactive power and apparent power) │ 0 第67讲 无功功率和视在功率(1).mp4 │ 1 第67讲 无功功率和视在功率(2).mp4 │ 2 第67讲 无功功率和视在功率(3).mp4 │ ├─第12周_ 频率特性和谐振( Frequency Characteristics and Resonance) │ │ 仿真6(Simulation 6).mp4 │ │ 第72讲 谐振(resonance).mp4 │ │ 第76讲 谐振的应用(applications of resonance).mp4 │ │ │ ├─第69讲 频率特性(frequency characteristics) │ │ 0 第69讲 频率特性(1).mp4 │ │ 1 第69讲 频率特性(2).mp4 │ │ 2 第69讲 频率特性(3).mp4 │ │ │ ├─第70讲 滤波(filter) │ │ 0 第70讲 滤波(1).mp4 │ │ 1 第70讲 滤波(2).mp4 │ │ │ ├─第71讲 频率特性的应用——小信号放大的低通特性(applications of frequency characteristics (low-pass characteristics of the small signal amplifier)) │ │ 0 第71讲 频率特性的应用(1).mp4 │ │ 1 第71讲 频率特性的应用(2).mp4 │ │ 2 第71讲 频率特性的应用(3).mp4 │ │ │ ├─第73讲 RLC谐振(RLC resonance) │ │ 0 第73讲 RLC谐振(1).mp4 │ │ 1 第73讲 RLC谐振(2).mp4 │ │ 2 第73讲 RLC谐振(3).mp4 │ │ │ ├─第74讲 串联RLC谐振的品质因数(quality factor of serial RLC resonance) │ │ 0 第74讲 串联RLC谐振的品质因数(1).mp4 │ │ 1 第74讲 串联RLC谐振的品质因数(2).mp4 │ │ 2 第74讲 串联RLC谐振的品质因数(3).mp4 │ │ 3 第74讲 串联RLC谐振的品质因数(4).mp4 │ │ 4 第74讲 串联RLC谐振的品质因数(5).mp4 │ │ 5 第74讲 串联RLC谐振的品质因数(6).mp4 │ │ │ └─第75讲 LC谐振(LC resonance) │ 0 第75讲 LC谐振(1).mp4 │ 1 第75讲 LC谐振(2).mp4 │ ├─第13周_ 互感和变压(Mutual Inductance and Transformers) │ │ 仿真7(Simulation 7).mp4 │ │ 第79讲 互感的应用(能量和信号)(application of mutual inductance (power and signal)).mp4 │ │ 第82讲 全耦合变压(unity-coupled transformer).mp4 │ │ │ ├─第77讲 互感和互感电压(mutual inductance and mutual voltage) │ │ 0 第77讲 互感和互感电压(1).mp4 │ │ 1 第77讲 互感和互感电压(2).mp4 │ │ │ ├─第78讲 同名端(dot convention) │ │ 0 第78讲 同名端(1).mp4 │ │ 1 第78讲 同名端(2).mp4 │ │ │ ├─第80讲 互感的去耦等效(decoupling equivalence of mutual inductance) │ │ 0 第80讲 互感的去耦等效(1).mp4 │ │ 1 第80讲 互感的去耦等效(2).mp4 │ │ 2 第80讲 互感的去耦等效(3).mp4 │ │ 3 第80讲 互感的去耦等效(4).mp4 │ │ │ ├─第81讲 空心变压(air-core transformer) │ │ 0 第81讲 空心变压(1).mp4 │ │ 1 第81讲 空心变压(2).mp4 │ │ │ └─第83讲 理想变压(ideal transformer) │ 0 第83讲 理想变压(1).mp4 │ 1 第83讲 理想变压(2).mp4 │ ├─第14周_ 三相电路和周期非正弦稳态分析(Three-phase Circuits and Periodical Nonsinusoidal Steady State Analysis) │ │ 第84讲 三相电源(three phase source).mp4 │ │ 第88讲 周期信号的傅里叶级数(Fourier series for periodical signal).mp4 │ │ 第90讲 周期激励下的电路稳态分析(steady state analysis of circuits with periodical excitations).mp4 │ │ │ ├─第85讲 三相对称负载和三相对称电路(balanced three phase load and balanced three phase circuit) │ │ 0 第85讲 三相对称负载和三相对称电路(1).mp4 │ │ 1 第85讲 三相对称负载和三相对称电路(2).mp4 │ │ │ ├─第86讲 三相对称电路的分析(analysis of balanced three phase circuit) │ │ 0 第86讲 三相对称电路的分析(1).mp4 │ │ 1 第86讲 三相对称电路的分析(2).mp4 │ │ │ ├─第87讲 三相电路的功率(power in three phase circuits) │ │ 0 第87讲 三相电路的功率(1).mp4 │ │ 1 第87讲 三相电路的功率(2).mp4 │ │ 2 第87讲 三相电路的功率(3).mp4 │ │ │ └─第89讲 周期信号的有效值和平均功率(effective value and average power for periodical signal) │ 0 第89讲 周期信号的有效值和平均功率(1).mp4 │ 1 第89讲 周期信号的有效值和平均功率(2).mp4 │ ├─第1周 支路变量、元件、KCL和KVL( Branch variables, elements, KCL, and KVL) │ │ 仿真1(simulation1).mp4 │ │ 仿真2(simulation2).mp4 │ │ 第11讲 2B法(2B method).mp4 │ │ 第4讲 参考方向(reference direction).mp4 │ │ 第5讲 功率(power).mp4 │ │ 第8讲 端口(port).mp4 │ │ │ ├─第10讲 基尔霍夫定律(KCL KVL) │ │ 0 基尔霍夫定律(KCL KVL) (1).mp4 │ │ 1 基尔霍夫定律(KCL KVL) (2).mp4 │ │ 2 基尔霍夫定律(KCL KVL) (3).mp4 │ │ 3 基尔霍夫定律(KCL KVL) (4).mp4 │ │ │ ├─第3讲 支路变量(branch variables) │ │ 0 支路变量(branch variables) (1).mp4 │ │ 1 支路变量(branch variables) (2).mp4 │ │ 2 支路变量(branch variables) (3).mp4 │ │ 3 支路变量(branch variables) (4).mp4 │ │ 4 支路变量(branch variables) (5).mp4 │ │ 5 支路变量(branch variables) (6).mp4 │ │ │ ├─第6讲 电阻(resistor) │ │ 0 电阻(resistor) (1).mp4 │ │ 1 电阻(resistor) (2).mp4 │ │ │ ├─第7讲 独立电源(independent source) │ │ 0 独立电源(independent source) (1).mp4 │ │ 1 独立电源(independent source) (2).mp4 │ │ │ └─第9讲 受控元件(dependent elements) │ 0 受控元件(dependent elements) (1).mp4 │ 1 受控元件(dependent elements) (2).mp4 │ 2 受控元件(dependent elements) (3).mp4 │ ├─第2周 电阻、电源的等效变换(Equivalent transform for resistors and sources) │ │ 第15讲 二端网络的等效电阻(equivalent resistance of two-terminal network).mp4 │ │ 第17讲 最大功率传输(maximum power transfer).mp4 │ │ │ ├─第12讲 电阻的串并联(serial parallel resistors) │ │ 0 电阻的串并联(serial parallel resistors) (1).mp4 │ │ 1 电阻的串并联(serial parallel resistors) (2).mp4 │ │ 2 电阻的串并联(serial parallel resistors) (3).mp4 │ │ 3 电阻的串并联(serial parallel resistors) (4).mp4 │ │ │ ├─第13讲 平衡电桥(bridge) │ │ 0 平衡电桥(bridge).mp4 │ │ 1 电桥实验-青海大学张海峰.mp4 │ │ │ ├─第14讲 Y-Δ变换(Y-Δ transform) │ │ 0 Y-Δ变换(Y-Δ transform) (1).mp4 │ │ 1 Y-Δ变换(Y-Δ transform) (2).mp4 │ │ │ └─第16讲 电源的等效变换(equivalent transform for sources) │ 0 电源的等效变换(equivalent transform for sources) (1).mp4 │ 1 电源的等效变换(equivalent transform for sources) (2).mp4 │ 2 电源的等效变换(equivalent transform for sources) (3).mp4 │ ├─第3周 运算放大(Op Amps) │ │ 仿真3(simulation3).mp4 │ │ 第18讲 运算放大(Op Amps).mp4 │ │ 第20讲 理想运算放大(ideal Op Amp).mp4 │ │ │ ├─第19讲 运算放大模型(Op Amps' model) │ │ 0 运算放大模型(Op Amps' model)(1).mp4 │ │ 1 运算放大模型(Op Amps' model)(2).mp4 │ │ 2 运算放大模型(Op Amps' model)(3).mp4 │ │ │ └─第21讲 运算放大的应用(applications of Op Amps) │ 0 运算放大的应用(applications of Op Amps)(1).mp4 │ 1 运算放大的应用(applications of Op Amps)(2).mp4 │ 2 运算放大的应用(applications of Op Amps)(3).mp4 │ 3 运放电流源实验-青海大学唐岩.mp4 │ ├─第4周 金属-氧化层半导体场效晶体管和二端口网络 (MOSFET and two-port network) │ │ 第22讲 数字系统介绍(digital system —— introduction).mp4 │ │ 第26讲 互补金属氧化物半导体(CMOS).mp4 │ │ 第27讲 二端口网络(two-port network)(不要求).mp4 │ │ 第30讲 二端口网络的等效电路(equivalent circuits of two-port)(不要求).mp4 │ │ │ ├─第23讲 数字系统——数和逻辑(digital system——number and logic in digital) │ │ 0 数字系统——数和逻辑(digital system——number and logic in digital)(1).mp4 │ │ 1 数字系统——数和逻辑(digital system——number and logic in digital)(2).mp4 │ │ │ ├─第24讲 金属-氧化层半导体场效晶体管(MOSFET) │ │ 0 金属-氧化层半导体场效晶体管(MOSFET)(1).mp4 │ │ 1 金属-氧化层半导体场效晶体管(MOSFET)(2).mp4 │ │ │ ├─第25讲 逻辑门(logic gates) │ │ 0 逻辑门(logic gates)(1).mp4 │ │ 1 逻辑门(logic gates)(2).mp4 │ │ │ ├─第28讲 G参数(G parameter)(不要求) │ │ 0 G参数(G parameter)(1).mp4 │ │ 1 G参数(G parameter)(2).mp4 │ │ │ ├─第29讲 其他参数(other parameters)(不要求) │ │ 0 其他参数(other parameters)(1).mp4 │ │ 1 其他参数(other parameters)(2).mp4 │ │ 2 其他参数(other parameters)(3).mp4 │ │ │ └─第31讲 二端口网络的连接(connection of two-ports)(不要求) │ 0 二端口网络的连接(connection of two-ports)(1).mp4 │ 1 二端口网络的连接(connection of two-ports)(2).mp4 │ 2 二端口网络的连接(connection of two-ports)(3).mp4 │ ├─第5周 节点电压法和回路电流法(Node voltage method and loop current method) │ │ 第32讲 系统化方程解法介绍(introduction to systematic function formulating).mp4 │ │ │ ├─第33讲 节点电压法(node voltage method) │ │ 0 节点电压法(node voltage method)(1).mp4 │ │ 1 节点电压法(node voltage method)(2).mp4 │ │ │ └─第34讲 回路电流法(loop current method) │ 0 回路电流法(loop current method)(1).mp4 │ 1 回路电流法(loop current method)(2).mp4 │ 2 回路电流法(loop current method)(3).mp4 │ ├─第6周 叠加、替代和戴维南定理 (Superposition, substitution and Thevenin ) │ │ 第38讲 替代定理(substitution theorem).mp4 │ │ │ ├─第35讲 叠加定理(superposition theorem) │ │ 0 叠加定理(superposition theorem)(1).mp4 │ │ 1 叠加定理(superposition theorem)(2).mp4 │ │ 2 叠加定理(superposition theorem)(3).mp4 │ │ 3 叠加定理(superposition theorem)(4).mp4 │ │ │ ├─第36讲 戴维南和诺顿定理(Thevenin_Norton theorem) │ │ 0 戴维南和诺顿定理(Thevenin_Norton theorem)(1).mp4 │ │ 1 戴维南和诺顿定理(Thevenin_Norton theorem)(2).mp4 │ │ 2 戴维南和诺顿定理(Thevenin_Norton theorem)(3).mp4 │ │ 3 戴维南和诺顿定理(Thevenin_Norton theorem)(4).mp4 │ │ 4 戴维南定理实验-青海大学张强.mp4 │ │ │ └─第37讲 戴维南定理的应用(applications of Thevenin theorem) │ 0 戴维南定理的应用(applications of Thevenin theorem)(1).mp4 │ 1 戴维南定理的应用(applications of Thevenin theorem)(2).mp4 │ 2 戴维南定理的应用(applications of Thevenin theorem)(3).mp4 │ ├─第7周 非线性电阻电路(Nonlinear resistive circuits) │ │ 第45讲 放大(amplifier).mp4 │ │ │ ├─第39讲 非线性电阻(nonlinear resistor) │ │ 0 非线性电阻(nonlinear resistor)(1).mp4 │ │ 1 非线性电阻(nonlinear resistor)(2).mp4 │ │ │ ├─第40讲 非线性电阻电路的方程求解法和图解法(analytical and graphical methods for nonlinear circuits) │ │ 0 非线性电阻电路的方程求解法和图解法(analytical and graphical methods for nonlinear circuits)(1).mp4 │ │ 1 非线性电阻电路的方程求解法和图解法(analytical and graphical methods for nonlinear circuits)(2).mp4 │ │ │ ├─第41讲 非线性电路的分段线性法(piecewise linear method for nonlinear circuits) │ │ 0 非线性电路的分段线性法(piecewise linear method for nonlinear circuits)(1).mp4 │ │ 1 非线性电路的分段线性法(piecewise linear method for nonlinear circuits)(2).mp4 │ │ 2 非线性电路的分段线性法(piecewise linear method for nonlinear circuits)(3).mp4 │ │ 3 非线性电路的分段线性法(piecewise linear method for nonlinear circuits)(4).mp4 │ │ 4 非线性电路的分段线性法(piecewise linear method for nonlinear circuits)(5).mp4 │ │ │ ├─第42讲 假设检验法的应用(application of suppose-verify method) │ │ 0 假设检验法的应用(application of suppose-verify method)(1).mp4 │ │ 1 假设检验法的应用(application of suppose-verify method)(2).mp4 │ │ │ ├─第43讲 非线性电路的小信号法(small signal method for nonlinear circuits) │ │ 0 非线性电路的小信号法(small signal method for nonlinear circuits)(1).mp4 │ │ 1 非线性电路的小信号法(small signal method for nonlinear circuits)(2).mp4 │ │ 2 非线性电路的小信号法(small signal method for nonlinear circuits)(3).mp4 │ │ │ └─第44讲 小信号模型(small signal models) │ 0 小信号模型(small signal models)(1).mp4 │ 1 小信号模型(small signal models)(2).mp4 │ 2 小信号模型(small signal models)(3).mp4 │ ├─第8周 一阶电路(First-Order Circuits) │ │ 仿真4(Simulation 4).mp4 │ │ 第51讲 零输入响应和零状态响应(zero input response and zero state response).mp4 │ │ │ ├─第46讲 电容与电感(Capacitors and Inductors) │ │ 0 第46讲 电容与电感(Capacitors and Inductors)(1).mp4 │ │ 1 第46讲 电容与电感(Capacitors and Inductors)(2).mp4 │ │ 2 第46讲 电容与电感(Capacitors and Inductors)(3).mp4 │ │ 3 第46讲 电容与电感(Capacitors and Inductors)(4).mp4 │ │ 4 第46讲 电容与电感(Capacitors and Inductors)(5).mp4 │ │ │ ├─第47讲 动态电路(Dynamic Circuits) │ │ 0 第47讲 动态电路(Dynamic Circuits)(1).mp4 │ │ 1 第47讲 动态电路(Dynamic Circuits)(2).mp4 │ │ 2 第47讲 动态电路(Dynamic Circuits)(3).mp4 │ │ 3 第47讲 动态电路(Dynamic Circuits)(4).mp4 │ │ │ ├─第48讲 初值(Initial Values) │ │ 0 第48讲 初值(Initial Values)(1).mp4 │ │ 1 第48讲 初值(Initial Values)(2).mp4 │ │ 2 第48讲 初值(Initial Values)(3).mp4 │ │ 3 第48讲 初值(Initial Values)(4).mp4 │ │ │ ├─第49讲 一阶电路经典法(Classical Method for First-Order Circuits) │ │ 0 第49讲 一阶电路经典法(Classical Method for First-Order Circuits)(1).mp4 │ │ 1 第49讲 一阶电路经典法(Classical Method for First-Order Circuits)(2).mp4 │ │ 2 第49讲 一阶电路经典法(Classical Method for First-Order Circuits)(3).mp4 │ │ 3 第49讲 一阶电路经典法(Classical Method for First-Order Circuits)(4).mp4 │ │ 4 第49讲 一阶电路经典法(Classical Method for First-Order Circuits)(5).mp4 │ │ │ └─第50讲 一阶电路三要素法(Three Elements Method for First-Order Circuits) │ 0 第50讲 一阶电路三要素法(Three Elements Method for First-Order Circuits)(1).mp4 │ 1 第50讲 一阶电路三要素法(Three Elements Method for First-Order Circuits)(2).mp4 │ 2 第50讲 一阶电路三要素法(Three Elements Method for First-Order Circuits)(3).mp4 │ 3 第50讲 一阶电路三要素法(Three Elements Method for First-Order Circuits)(4).mp4 │ └─第9周_ 一阶电路的应用(Applications of First-Order Circuits) ├─A1 单位阶跃函数和单元阶跃响应(unit step function and unit step response)(不要求) │ 0 A1 单位阶跃函数和单元阶跃响应(unit step function and unit step response)(1).mp4 │ 1 A1 单位阶跃函数和单元阶跃响应(unit step function and unit step response)(2).mp4 │ 2 A1 单位阶跃函数和单元阶跃响应(unit step function and unit step response)(3).mp4 │ ├─A2 单位冲激函数(unit impulse function)(不要求) │ 0 A2 单位冲激函数(unit impulse function)(1).mp4 │ 1 A2 单位冲激函数(unit impulse function)(2).mp4 │ ├─A3 单位冲激响应(unit impulse response)(不要求) │ 0 A3 单位冲激响应(unit impulse response)(1).mp4 │ 1 A3 单位冲激响应(unit impulse response)(2).mp4 │ 2 A3 单位冲激响应(unit impulse response)(3).mp4 │ 3 A3 单位冲激响应(unit impulse response)(4).mp4 │ ├─A4 卷积积分(convolution integral)(不要求) │ 0 A4 卷积积分(convolution integral)(1).mp4 │ 1 A4 卷积积分(convolution integral)(2).mp4 │ 2 A4 卷积积分(convolution integral)(3).mp4 │ 3 A4 卷积积分(convolution integral)(4).mp4 │ 4 A4 卷积积分(convolution integral)(5).mp4 │ ├─第52讲 一阶电路的应用之信号_ 门传输延迟(applications of first-order circuits (signal_ gate propagation delay)) │ 0 第52讲 门传输延迟(1).mp4 │ 1 第52讲 门传输延迟(2).mp4 │ 2 第52讲 门传输延迟(3).mp4 │ ├─第53讲 一阶电路的应用之信号_ 运算放大电路(applications of first- order circuits (signal_ Op Amp circuits)) │ 0 第53讲 运算放大电路(1).mp4 │ 1 第53讲 运算放大电路(2).mp4 │ 2 第53讲 运算放大电路(3).mp4 │ 3 第53讲 运算放大电路(4).mp4 │ 4 第53讲 运算放大电路(5).mp4 │ └─第54讲 一阶电路的应用之能量_ 整流与斩波(applications of first-order circuits (energy_ rectifying and chopping)) 0 第54讲 整流与斩波(1).mp4 1 第54讲 整流与斩波(2).mp4 2 第54讲 整流与斩波(3).mp4
最全的模电数电multisim仿真电路实例,只要1积分,包含 1-5-1a二极管仿真电路.ms9 1-5-2稳压管仿真电路.ms9 1-5-3BJT仿真电路.ms9 1-5-4aMOSFET仿真电路.ms9 10-10-1a单相桥式整流电路.ms7 10-10-2a桥式整流电容滤波电路.ms7 10-10-3硅稳压管稳压电路.ms7 10-10-4串联型直流稳压电路.ms7 10-10-5a三端集成稳压-a.ms7 10-10-5b三端集成稳压-b.ms7 10_循环计数.ms9 2-9-1a单管共射放大电路.ms9 2-9-1b单管共射放大电路直流通路.ms9 2-9-2工作点稳定电路.ms9 2-9-3a共集电极放大电路.ms9 2-9-4a共基极放大电路.ms9 2-9-5a共源极放大电路.ms9 3-5-1aRC高通电路.ms9 3-5-2aRC耦合单管共射放大电路.ms9 3D运算放大应用.ms9 3D运算放大应用.ms9 (Security copy) 4-5-1aOTL乙类互补对称电路.ms9 4-5-2aOTL甲乙类互补对称电路.ms9 4-5-3a复合管OCL甲乙类互补对称电路.ms9 4.ms9 (Security copy) 5-7-1长尾式差分放大电路.ms7 5-7-2恒流源式差分放大电路.ms7 5.ms9 555Astable.ms9 555Astable.ms9 (Security copy) 555单稳触发.ms9 555单稳触发.ms9 (Security copy) 555振荡(占空比可调).ms9 555振荡(占空比可调).ms9 (Security copy) 6-6-1电流串联负反馈电路.ms7 6-6-2电压并联负反馈电路.ms7 6-6-3电压串联负反馈电路.ms7 6.ms9 7-7-1a反相比例电路.ms7 7-7-1b同相比例电路.ms7 7-7-1c差分比例电路.ms7 7-7-2三运放数据放大.ms7 7-7-3求和电路.ms7 7-7-4a积分电路.ms7 74LS194移位寄存.ms9 74LS194移位寄存.ms9 (Security copy) 74LS47译码.ms9 74LS47译码.ms9 (Security copy) 74LS90七进制计数电路.ms9 74LS90六十进制计数.ms9 74LS90六十进制计数.ms9 (Security copy) 74LS90六进制计数电路.ms9 74LS90十进制电路.ms9 74LS90测试电路.ms9 8-3-1a二阶低通滤波.ms7 8-3-2a带通滤波.ms7 8-3-3a单限比较.ms7 8-3-4a滞回比较.ms7 8-3-5a双限比较.ms7 8-3-6a集成单限比较.ms7 9-6-1aRC串并联网络振荡电路.ms7 9-6-2a矩形波发生电路.ms7 9-6-3三角波发生电路.ms7 A-5-13aIV分析仪测二极管.ms7 A-5-14aIV分析仪测BJT.ms7 A-5-15aIV分析仪测FET.ms7 A-5-7阻容耦合单管共射放大电路.ms7 AC-DC变换.ms9 ADC实例.ms9 ADC实例.ms9 (Security copy) BTL功放.ms9 BTL功放.ms9 (Security copy) D触发的研究.ms9 IDAC测试电路.ms9 J-K触发的研究.ms9 LIST.TXT OCL功放.ms9 OCL功放.ms9 (Security copy) OC门应用实验.ms9 OC门应用实验.ms9 (Security copy) OC门测试(74LS22).ms9 R-S触发的研究.ms9 RC一阶电路.ms10 RF放大(频谱分析仪).ms9 RF放大(频谱分析仪).ms9 (Security copy) RF放大.ms9 RF放大.ms9 (Security copy) RF放大(网络分析仪).ms9 RF放大(网络分析仪).ms9 (Security copy) VCVS.ms9 VCVS.ms9 (Security copy) VDAC原理图.ms9 VDAC原理图.ms9 (Security copy) 三态R-S触发(4043).ms9 三态缓冲测试.ms9 三态缓冲组合电路.ms9 三态门应用.ms9 三极管的开关特性研究(3D).ms9 三极管的高频特性分析.ms9 三端稳压源.ms9 三角波发生.ms9 三角波发生.ms9 (Security copy) 三通道总加实验.ms9 三通道总加实验.ms9 (Security copy) 与非门搭接的逻辑电路.ms9 与非门测试.ms9 与非门测试.ms9 (Security copy) 与非门逻辑功能测试.ms9 两级放大1.ms9 两级放大1.ms9 (Security copy) 两级阻容耦合放大电路.ms10 串联电路分析.ms9 串联电路应用.ms9 乘法应用.ms9 乙类功放.ms9 二极管仿真.ms10 二极管振幅调制.ms9 二-五混合进制电路(74LS90).ms9 互补对称功放.ms9 互补对称功放.ms9 (Security copy) 交通灯.ms9 传输线应用.ms9 低通滤波(有源).ms9 低通滤波(有源).ms9 (Security copy) 倍频.ms9 (Security copy) 傅里叶分析图例.ms9 光柱应用.ms9 光柱应用.ms9 (Security copy) 克拉泼振荡.ms9 克拉泼振荡.ms9 (Security copy) 八位串行-并行转换电路.ms9 八位移位寄存.ms9 功率放大原理图).ms9 单个放大.ms9 (Security copy) 单管放大(实验).ms9 单管放大.ms9 (Security copy) 单管放大1.ms9 单管放大1.ms9 (Security copy) 单管放大2.ms9 单管放大2.ms9 (Security copy) 单管放大原理图.ms9 单管放大(1).ms9 (Security copy) 单管放大(定).ms9 单管放大(定).ms9 (Security copy) 单级放大电路.ms10 压控振荡.ms9 压控振荡.ms9 (Security copy) 参数扫描分析.ms9 参数扫描分析.ms9 (Security copy) 双向开关4066.ms9 (Security copy) 双向开关应用4066.ms9 双向开关测试4066.ms9 双向数据总线驱动74LS373.ms9 双向求和放大.ms9 双向限幅电路.ms10 反向比例放大.ms9 (Security copy) 反向求和放大.ms9 反向滞回比较.ms9 反向滞回比较.ms9 (Security copy) 反向迟滞比较.ms9 (Security copy) 受控源仿真.ms10 叠加原理.ms9 叠加原理.ms9 (Security copy) 叠加定理仿真.ms10 噪声分析.ms7 噪声分析.ms9 图7-1-5 并联电路.ms9 均匀性研究.ms9 均匀性研究.ms9 (Security copy) 宽带RF放大(网络分析仪).ms9 宽带RF放大(网络分析仪).ms9 (Security copy) 射极跟随.ms9 射极跟随.ms9 (Security copy) 射集跟随.ms10 差动放大.ms9 差动放大.ms9 (Security copy) 带通滤波(无源).ms9 带通网络(有源).ms9 带阻滤波(有源).ms9 异或门逻辑测试.ms9 异步二进制计数.ms9 异步二-十进制计数.ms9 异步二-十进制计数.ms9 (Security copy) 微分积分电路.ms10 恒流源式差分放大电路.ms10 戴维南等效电路.ms9 批量复制文件名.bat 数据选择74LS153.ms9 数据选择74LS153.ms9 (Security copy) 文氏桥振荡.ms9 文氏桥振荡.ms9 (Security copy) 方波发生(可调占空比).ms9 方波发生(可调占空比).ms9 (Security copy) 方波发生.ms9 方波发生.ms9 (Security copy) 时基振荡发生.ms10 晶体管伏安特性仿真.ms10 李萨如仿真.ms10 构图图例.ms9 桥式整流及滤波电路.ms10 比较LM311应用.ms9 泰克示波.ms9 环形振荡.ms9 电压微分应用.ms9 电压斜率模块实验.ms9 电压斜率模块实验.ms9 (Security copy) 电压跟随.ms9 电压跟随.ms9 (Security copy) 电压限幅.ms9 电平指示的应用.ms9 电平指示的应用.ms9 (Security copy) 电阻的伏安特性仿真.ms10 继电应用实例.ms9 网络互易性研究.ms9 考毕兹振荡.ms9 虚拟仪应用1.ms9 虚拟仪应用1.ms9 (Security copy) 虚拟仪应用2.ms9 虚拟开关测试电路.ms9 西勒振荡.ms9 西勒振荡.ms9 (Security copy) 计数、译码、显示.ms9 计数、译码、显示.ms9 (Security copy) 计数(3D).ms9 计数(3D).ms9 (Security copy) 译码74LS138.ms9 译码74LS139.ms9 译码研究.ms9 负反馈放大.ms9 (Security copy) 负反馈放大2.ms9 负反馈放大2.ms9 (Security copy) 负反馈放大3.ms9 负反馈放大3.ms9 (Security copy) 负反馈放大(实验).ms9 负反馈放大(实验).ms9 (Security copy) 趣味1.ms9 (Security copy) 趣味闪灯.ms9 转移函数分析.ms9 输出电压可调的稳压源.ms9 锁存原理测试.ms9 锁存应用.ms9 锯齿波发生.ms9 锯齿波发生.ms9 (Security copy) 长尾式差分放大.ms10 阻容耦合放大电路.ms10 除法应用.ms9 除法应用.ms9 (Security copy) 非线性相关源实验.ms9 频率分割.ms9 频率分割.ms9 (Security copy) 高通滤波(有源).ms9 高频小信号调谐放大.ms9 高频小信号调谐放大.ms9 (Security copy)
Multisim设计Multisim基础仿真电路200例: 1-5-1a二极管仿真电路.ms9 1-5-2稳压管仿真电路.ms9 1-5-3BJT仿真电路.ms9 1-5-4aMOSFET仿真电路.ms9 1.ms9 10-10-1a单相桥式整流电路.ms7 10-10-2a桥式整流电容滤波电路.ms7 10-10-3硅稳压管稳压电路.ms7 10-10-4串联型直流稳压电路.ms7 10-10-5a三端集成稳压-a.ms7 10-10-5b三端集成稳压-b.ms7 10_循环计数.ms9 2-9-1a单管共射放大电路.ms9 2-9-1b单管共射放大电路直流通路.ms9 2-9-2工作点稳定电路.ms9 2-9-3a共集电极放大电路.ms9 2-9-4a共基极放大电路.ms9 2-9-5a共源极放大电路.ms9 2.ms9 3-5-1aRC高通电路.ms9 3-5-2aRC耦合单管共射放大电路.ms9 3.ms9 3D运算放大应用.ms9 3D运算放大应用.ms9 (Security copy) 4-5-1aOTL乙类互补对称电路.ms9 4-5-2aOTL甲乙类互补对称电路.ms9 4-5-3a复合管OCL甲乙类互补对称电路.ms9 4.ms9 4.ms9 (Security copy) 5-7-1长尾式差分放大电路.ms7 5-7-2恒流源式差分放大电路.ms7 5.ms9 555Astable.ms9 555Astable.ms9 (Security copy) 555单稳触发.ms9 555单稳触发.ms9 (Security copy) 555振荡(占空比可调).ms9 555振荡(占空比可调).ms9 (Security copy) 6-6-1电流串联负反馈电路.ms7 6-6-2电压并联负反馈电路.ms7 6-6-3电压串联负反馈电路.ms7 6.ms9 7-7-1a反相比例电路.ms7 7-7-1b同相比例电路.ms7 7-7-1c差分比例电路.ms7 7-7-2三运放数据放大.ms7 7-7-3求和电路.ms7 7-7-4a积分电路.ms7 74LS194移位寄存.ms9 74LS194移位寄存.ms9 (Security copy) 74LS47译码.ms9 74LS47译码.ms9 (Security copy) 74LS90七进制计数电路.ms9 74LS90六十进制计数.ms9 74LS90六十进制计数.ms9 (Security copy) 74LS90六进制计数电路.ms9 74LS90十进制电路.ms9 74LS90测试电路.ms9 8-3-1a二阶低通滤波.ms7 8-3-2a带通滤波.ms7 8-3-3a单限比较.ms7 8-3-4a滞回比较.ms7 8-3-5a双限比较.ms7 8-3-6a集成单限比较.ms7 9-6-1aRC串并联网络振荡电路.ms7 9-6-2a矩形波发生电路.ms7 9-6-3三角波发生电路.ms7 A-5-13aIV分析仪测二极管.ms7 A-5-14aIV分析仪测BJT.ms7 A-5-15aIV分析仪测FET.ms7 A-5-7阻容耦合单管共射放大电路.ms7 AC-DC变换.ms9 ADC实例.ms9 ADC实例.ms9 (Security copy) BTL功放.ms9 BTL功放.ms9 (Security copy) D触发的研究.ms9 IDAC测试电路.ms9 J-K触发的研究.ms9 OCL功放.ms9 OCL功放.ms9 (Security copy) OC门应用实验.ms9 OC门应用实验.ms9 (Security copy) OC门测试(74LS22).ms9 R-S触发的研究.ms9 RC一阶电路.ms10 RF放大(频谱分析仪).ms9 RF放大(频谱分析仪).ms9 (Security copy) RF放大.ms9 RF放大.ms9 (Security copy) RF放大(网络分析仪).ms9 RF放大(网络分析仪).ms9 (Security copy) VCVS.ms9 VCVS.ms9 (Security copy) VDAC原理图.ms9 VDAC原理图.ms9 (Security copy) 三态R-S触发(4043).ms9 三态缓冲测试.ms9 三态缓冲组合电路.ms9 三态门应用.ms9 三极管的开关特性研究(3D).ms9 三极管的高频特性分析.ms9 三端稳压源.ms9 三角波发生.ms9 三角波发生.ms9 (Security copy) 三通道总加实验.ms9 三通道总加实验.ms9 (Security copy) 与非门搭接的

69,373

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧