##// END OF EJS Templates
Bug 60 corrected...
Bug 60 corrected Spectral matrices averaging and compression functional Spectral matrix transmission functional

File last commit:

r102:b37996d46c77 VHDLib206
r102:b37996d46c77 VHDLib206
Show More
load_spectral_matrix.py
20 lines | 479 B | text/x-python | PythonLexer
/ FSW-qt / bin / load_spectral_matrix.py
paul
Added a few files to the repository
r101 #!/usr/bin/lppmon -e
address_to_read = 0x80000f08
val = RMAPPlugin0.Read( address_to_read, 1)
matrixF0_Address0 = val[0]
print hex(matrixF0_Address0)
# BUILD THE DATA
dataToWrite = []
for frequencyBin in range(128):
for component in range (25):
dataToWrite.append( component )
paul
Bug #60 corrected...
r102 #for frequencyBin in range(64):
# for component in range (25):
# dataToWrite.append( 2 * component )
paul
Added a few files to the repository
r101 # WRITE THE DATA
print len(dataToWrite)
RMAPPlugin0.Write( matrixF0_Address0, dataToWrite )