dsdemo8.m

来自「code of an ADC implementation woith matl」· M 代码 · 共 21 行

M
21
字号
% Demonstrate the designLCBP functionclc;fprintf(1,'\t\t\t Continuous-Time LC Modulator Design\n\n');%WARNING: designLCBP is very ill-behaved due to deficiencies% in MATLAB's constr() and minimax(). These functions frequently% take a viable set of parameters as a starting point and turn% them into an unstable modulator. I should provide a more robust% implementation...echo on;n = 3;OSR = 64;opt = 2;Hinf = 1.7;f0 = 1/16;t = [0.5 1];form = 'FB';dbg = 1;[param H L0 ABCD] = designLCBP(n,OSR,opt,Hinf,f0,t,form,[],dbg);echo off;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?