fig6_19.m

来自「《射频电路设计——理论与应用》一书课后习题第六章Matlab程序代码」· M 代码 · 共 28 行

M
28
字号
%
%   This program plots the capacitance of the varactor diode
% 
%   Copyright (c) 1999 by P.Bretchko and R.Ludwig
%   "RF Circuit Design: Theory and Practice"
%

close all; % close all opened graphs
clear all; % clear all variables
figure;    % open a new graph

% define the range for the applied voltage
VQ=-2:0.01:0;

% diffusion voltage
Vdif=0.5;

% capacitance at zero applied voltage
Cv0=0.2; % given in pF

C=Cv0*(1-VQ/Vdif).^(-1/2);
plot(VQ,C)
title('Varactor diode capacitance vs. applied voltage');
xlabel('Biasing voltage V_Q, V');
ylabel('Capacitance C_v, pF');
%print -deps 'fig6_19.eps'

⌨️ 快捷键说明

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