blob: 63592b8f8f481088ba1f04293a0aca73d453cd9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Caption:Program to determine the implementaton complexity of a 2048 channel
//Example 5.3
//Page 256
k=7//from equation 5.14 on page 256
disp('Using the value of k')
disp('Using the value of k, the number of crosspoint determined are')
2*7*16
disp('The number of bits of memory can be determined are')
N=[2*7*128*4]+[7*128*8]+[7*128*7]
//Result
//The composite implementation complecity is 430 equivalent crosspoints.
|