blob: f0ba0c97844eab9c8804678e048bcad2b580923c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Example 8-3, Page No - 259
clear
clc
f = 10*10^6
div_factor = 100
A =63
N = 285
M=32
ref = f/div_factor
R =M*N+A
fout= R*ref
printf('The output frequency of the synthesizer is %.1f Mhz',fout/10^6)
|