blob: b7d867004018e4f7a7727f62917cbb5002d9a2cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Chapter 6 example 2
//------------------------------------------------------------------------------
clc;
clear;
// Given data
Rl = 500; // load resistance
// Calculations
gl = 1/Rl; // load conductance
gmax = 4*gl; // max negative diff. conductance
// Output
mprintf('gmax = %3.3f mho',gmax);
//------------------------------------------------------------------------------
|