├── .gitignore ├── 5524Proj ├── Code │ ├── CumulantCode │ │ ├── Cumulant.m │ │ ├── CumulantClassifier.m │ │ ├── TestCumulantNumPoints.m │ │ └── TestCumulantSNR.m │ ├── GenerateDataSet.m │ ├── KMeansCode │ │ ├── NearestNeighbor.m │ │ ├── README.txt~ │ │ ├── TestKMeansNumPoints.m │ │ ├── TestKMeansSNR.m │ │ ├── kMeans.m │ │ └── kMeansClassifier.m │ ├── KolmogorovSmirnovCode │ │ ├── KsClassifier.m │ │ ├── README.txt~ │ │ ├── TestKSNumPoints.m │ │ ├── TestKsSNR.m │ │ ├── empirCDF.m │ │ └── qamCDF.m │ ├── QamSim.m │ ├── SubtractiveGroupingCode │ │ ├── DensityClassifier.m │ │ ├── DensityPotential.m │ │ ├── README.txt~ │ │ ├── TestDensityCluster.m │ │ └── TestDensityClusterNumPoints.m │ ├── scaledNoise.m │ └── speedTest.m └── Raw Results │ ├── Comparisons.ods │ ├── CumulantSNRData.ods │ ├── KolmogorovSNRData.ods │ ├── SubtractiveGrouping.ods │ └── kMeansSNRData.ods ├── DocumentSource └── HierarchicalDigitalModulationClassificationUsingCumulants.pdf ├── README.md ├── gnublocks ├── gr_CumulantDetect │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── gr_CumulantDetect │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ ├── arguments.hpp │ ├── cumulant_sink.hpp │ ├── main.cpp │ └── topblock.hpp ├── gr_CycloDetect │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── gr_CycloDetect │ │ ├── makefile │ │ ├── objects.mk │ │ ├── sources.mk │ │ └── subdir.mk │ ├── arguments.hpp │ ├── cyclo_sink.hpp │ ├── main.cpp │ └── topblock.hpp ├── gr_autofam │ ├── .cproject │ ├── .project │ ├── Debug │ │ ├── makefile │ │ ├── objects.mk │ │ ├── outputFile.txt │ │ ├── sources.mk │ │ └── subdir.mk │ ├── HelperFunctions.hpp │ ├── arguments.hpp │ ├── autofam_sink.hpp │ ├── main.cpp │ └── topblock.hpp └── gr_scan │ ├── .cproject │ ├── .project │ ├── Debug │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── subdir.mk │ ├── arguments.hpp │ ├── main.cpp │ ├── scanner_sink.hpp │ └── topblock.hpp ├── matlab └── sandbox │ ├── Cumulant.m │ ├── CumulantClassifier.m │ ├── CycloClassifier.m │ ├── amData.m │ ├── autofam.m │ ├── bpskData.m │ ├── detectWithRTL.m │ ├── detectWithRTL_Cyclo.m │ ├── fftAvg.m │ ├── fmData.m │ ├── freqShift.m │ ├── generateTemplates.m │ ├── manipulateCollect.m │ ├── mySxa.m │ ├── qamData.m │ ├── ssbData.m │ ├── ssbmod.m │ ├── testCumulant.m │ ├── testCumulantMethod.m │ ├── testCyclo.m │ ├── testCycloMethod.m │ ├── testData.m │ └── zeroShift.m └── report ├── .gitignore ├── .project ├── .texlipse ├── build ├── .gitignore ├── BagoullaReport.pdf └── BagoullaReport.synctex.gz ├── img ├── Report_AM_Ia_Ideal.png ├── Report_AM_Sxa_Ideal.png ├── Report_BPSK_Ia_Ideal.png ├── Report_BPSK_Sxa_Ideal.png ├── Report_CDP_885.png ├── Report_Cycle_Spectral_Corr_88_5.png ├── Report_Decimated_Digital_Signal.png ├── Report_Decimated_FM_Signal.png ├── Report_Decimated_FM_and_Digital.png ├── Report_FM_Ia_Ideal.png ├── Report_FM_Sxa_Ideal.png ├── Report_IQ_FM_Data.png ├── Report_IQ_Plot_Digital.png ├── Report_QAM16_Ia_Ideal.png ├── Report_QAM16_Sxa_Ideal.png ├── Report_QAM64_Ia_Ideal.png ├── Report_QAM64_Sxa_Ideal.png ├── Report_QAM_Ia_Ideal.png ├── Report_QAM_Sxa_Ideal.png ├── Report_RTL_SDR_FFT_881M_2Msps.png ├── Report_SSB_Ia_Ideal.png └── Report_SSB_Sxa_Ideal.png ├── src ├── Abstract.tex ├── Bibiliograph.tex ├── Conclusion.tex ├── CumulantsIntro.tex ├── CycloStationaryIntro.tex ├── EnergyDetection.tex ├── Improvments.tex ├── Motivation.tex ├── Outline.tex ├── Results.tex ├── ResultsUsingSDR.tex ├── TitlePage.tex └── main.tex └── tmp ├── .gitignore ├── main.aux └── main.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/.gitignore -------------------------------------------------------------------------------- /5524Proj/Code/CumulantCode/Cumulant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/CumulantCode/Cumulant.m -------------------------------------------------------------------------------- /5524Proj/Code/CumulantCode/CumulantClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/CumulantCode/CumulantClassifier.m -------------------------------------------------------------------------------- /5524Proj/Code/CumulantCode/TestCumulantNumPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/CumulantCode/TestCumulantNumPoints.m -------------------------------------------------------------------------------- /5524Proj/Code/CumulantCode/TestCumulantSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/CumulantCode/TestCumulantSNR.m -------------------------------------------------------------------------------- /5524Proj/Code/GenerateDataSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/GenerateDataSet.m -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/NearestNeighbor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/NearestNeighbor.m -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/README.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/README.txt~ -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/TestKMeansNumPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/TestKMeansNumPoints.m -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/TestKMeansSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/TestKMeansSNR.m -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/kMeans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/kMeans.m -------------------------------------------------------------------------------- /5524Proj/Code/KMeansCode/kMeansClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KMeansCode/kMeansClassifier.m -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/KsClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KolmogorovSmirnovCode/KsClassifier.m -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/README.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/TestKSNumPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KolmogorovSmirnovCode/TestKSNumPoints.m -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/TestKsSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KolmogorovSmirnovCode/TestKsSNR.m -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/empirCDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KolmogorovSmirnovCode/empirCDF.m -------------------------------------------------------------------------------- /5524Proj/Code/KolmogorovSmirnovCode/qamCDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/KolmogorovSmirnovCode/qamCDF.m -------------------------------------------------------------------------------- /5524Proj/Code/QamSim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/QamSim.m -------------------------------------------------------------------------------- /5524Proj/Code/SubtractiveGroupingCode/DensityClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/SubtractiveGroupingCode/DensityClassifier.m -------------------------------------------------------------------------------- /5524Proj/Code/SubtractiveGroupingCode/DensityPotential.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/SubtractiveGroupingCode/DensityPotential.m -------------------------------------------------------------------------------- /5524Proj/Code/SubtractiveGroupingCode/README.txt~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /5524Proj/Code/SubtractiveGroupingCode/TestDensityCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/SubtractiveGroupingCode/TestDensityCluster.m -------------------------------------------------------------------------------- /5524Proj/Code/SubtractiveGroupingCode/TestDensityClusterNumPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/SubtractiveGroupingCode/TestDensityClusterNumPoints.m -------------------------------------------------------------------------------- /5524Proj/Code/scaledNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/scaledNoise.m -------------------------------------------------------------------------------- /5524Proj/Code/speedTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Code/speedTest.m -------------------------------------------------------------------------------- /5524Proj/Raw Results/Comparisons.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Raw Results/Comparisons.ods -------------------------------------------------------------------------------- /5524Proj/Raw Results/CumulantSNRData.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Raw Results/CumulantSNRData.ods -------------------------------------------------------------------------------- /5524Proj/Raw Results/KolmogorovSNRData.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Raw Results/KolmogorovSNRData.ods -------------------------------------------------------------------------------- /5524Proj/Raw Results/SubtractiveGrouping.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Raw Results/SubtractiveGrouping.ods -------------------------------------------------------------------------------- /5524Proj/Raw Results/kMeansSNRData.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/5524Proj/Raw Results/kMeansSNRData.ods -------------------------------------------------------------------------------- /DocumentSource/HierarchicalDigitalModulationClassificationUsingCumulants.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/DocumentSource/HierarchicalDigitalModulationClassificationUsingCumulants.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/README.md -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/.cproject -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/.project -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/Debug/gr_CumulantDetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/Debug/gr_CumulantDetect -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/Debug/makefile -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/Debug/objects.mk -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/Debug/sources.mk -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/Debug/subdir.mk -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/arguments.hpp -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/cumulant_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/cumulant_sink.hpp -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/main.cpp -------------------------------------------------------------------------------- /gnublocks/gr_CumulantDetect/topblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CumulantDetect/topblock.hpp -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/.cproject -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/.project -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/Debug/gr_CycloDetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/Debug/gr_CycloDetect -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/Debug/makefile -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/Debug/objects.mk -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/Debug/sources.mk -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/Debug/subdir.mk -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/arguments.hpp -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/cyclo_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/cyclo_sink.hpp -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/main.cpp -------------------------------------------------------------------------------- /gnublocks/gr_CycloDetect/topblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_CycloDetect/topblock.hpp -------------------------------------------------------------------------------- /gnublocks/gr_autofam/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/.cproject -------------------------------------------------------------------------------- /gnublocks/gr_autofam/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/.project -------------------------------------------------------------------------------- /gnublocks/gr_autofam/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/Debug/makefile -------------------------------------------------------------------------------- /gnublocks/gr_autofam/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/Debug/objects.mk -------------------------------------------------------------------------------- /gnublocks/gr_autofam/Debug/outputFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnublocks/gr_autofam/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/Debug/sources.mk -------------------------------------------------------------------------------- /gnublocks/gr_autofam/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/Debug/subdir.mk -------------------------------------------------------------------------------- /gnublocks/gr_autofam/HelperFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/HelperFunctions.hpp -------------------------------------------------------------------------------- /gnublocks/gr_autofam/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/arguments.hpp -------------------------------------------------------------------------------- /gnublocks/gr_autofam/autofam_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/autofam_sink.hpp -------------------------------------------------------------------------------- /gnublocks/gr_autofam/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/main.cpp -------------------------------------------------------------------------------- /gnublocks/gr_autofam/topblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_autofam/topblock.hpp -------------------------------------------------------------------------------- /gnublocks/gr_scan/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/.cproject -------------------------------------------------------------------------------- /gnublocks/gr_scan/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/.project -------------------------------------------------------------------------------- /gnublocks/gr_scan/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/Debug/makefile -------------------------------------------------------------------------------- /gnublocks/gr_scan/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/Debug/objects.mk -------------------------------------------------------------------------------- /gnublocks/gr_scan/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/Debug/sources.mk -------------------------------------------------------------------------------- /gnublocks/gr_scan/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/Debug/subdir.mk -------------------------------------------------------------------------------- /gnublocks/gr_scan/arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/arguments.hpp -------------------------------------------------------------------------------- /gnublocks/gr_scan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/main.cpp -------------------------------------------------------------------------------- /gnublocks/gr_scan/scanner_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/scanner_sink.hpp -------------------------------------------------------------------------------- /gnublocks/gr_scan/topblock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/gnublocks/gr_scan/topblock.hpp -------------------------------------------------------------------------------- /matlab/sandbox/Cumulant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/Cumulant.m -------------------------------------------------------------------------------- /matlab/sandbox/CumulantClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/CumulantClassifier.m -------------------------------------------------------------------------------- /matlab/sandbox/CycloClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/CycloClassifier.m -------------------------------------------------------------------------------- /matlab/sandbox/amData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/amData.m -------------------------------------------------------------------------------- /matlab/sandbox/autofam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/autofam.m -------------------------------------------------------------------------------- /matlab/sandbox/bpskData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/bpskData.m -------------------------------------------------------------------------------- /matlab/sandbox/detectWithRTL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/detectWithRTL.m -------------------------------------------------------------------------------- /matlab/sandbox/detectWithRTL_Cyclo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/detectWithRTL_Cyclo.m -------------------------------------------------------------------------------- /matlab/sandbox/fftAvg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/fftAvg.m -------------------------------------------------------------------------------- /matlab/sandbox/fmData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/fmData.m -------------------------------------------------------------------------------- /matlab/sandbox/freqShift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/freqShift.m -------------------------------------------------------------------------------- /matlab/sandbox/generateTemplates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/generateTemplates.m -------------------------------------------------------------------------------- /matlab/sandbox/manipulateCollect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/manipulateCollect.m -------------------------------------------------------------------------------- /matlab/sandbox/mySxa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/mySxa.m -------------------------------------------------------------------------------- /matlab/sandbox/qamData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/qamData.m -------------------------------------------------------------------------------- /matlab/sandbox/ssbData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/ssbData.m -------------------------------------------------------------------------------- /matlab/sandbox/ssbmod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/ssbmod.m -------------------------------------------------------------------------------- /matlab/sandbox/testCumulant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/testCumulant.m -------------------------------------------------------------------------------- /matlab/sandbox/testCumulantMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/testCumulantMethod.m -------------------------------------------------------------------------------- /matlab/sandbox/testCyclo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/testCyclo.m -------------------------------------------------------------------------------- /matlab/sandbox/testCycloMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/testCycloMethod.m -------------------------------------------------------------------------------- /matlab/sandbox/testData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/testData.m -------------------------------------------------------------------------------- /matlab/sandbox/zeroShift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/matlab/sandbox/zeroShift.m -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/.gitignore -------------------------------------------------------------------------------- /report/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/.project -------------------------------------------------------------------------------- /report/.texlipse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/.texlipse -------------------------------------------------------------------------------- /report/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/build/.gitignore -------------------------------------------------------------------------------- /report/build/BagoullaReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/build/BagoullaReport.pdf -------------------------------------------------------------------------------- /report/build/BagoullaReport.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/build/BagoullaReport.synctex.gz -------------------------------------------------------------------------------- /report/img/Report_AM_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_AM_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_AM_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_AM_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_BPSK_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_BPSK_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_BPSK_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_BPSK_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_CDP_885.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_CDP_885.png -------------------------------------------------------------------------------- /report/img/Report_Cycle_Spectral_Corr_88_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_Cycle_Spectral_Corr_88_5.png -------------------------------------------------------------------------------- /report/img/Report_Decimated_Digital_Signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_Decimated_Digital_Signal.png -------------------------------------------------------------------------------- /report/img/Report_Decimated_FM_Signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_Decimated_FM_Signal.png -------------------------------------------------------------------------------- /report/img/Report_Decimated_FM_and_Digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_Decimated_FM_and_Digital.png -------------------------------------------------------------------------------- /report/img/Report_FM_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_FM_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_FM_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_FM_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_IQ_FM_Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_IQ_FM_Data.png -------------------------------------------------------------------------------- /report/img/Report_IQ_Plot_Digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_IQ_Plot_Digital.png -------------------------------------------------------------------------------- /report/img/Report_QAM16_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM16_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_QAM16_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM16_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_QAM64_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM64_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_QAM64_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM64_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_QAM_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_QAM_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_QAM_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_RTL_SDR_FFT_881M_2Msps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_RTL_SDR_FFT_881M_2Msps.png -------------------------------------------------------------------------------- /report/img/Report_SSB_Ia_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_SSB_Ia_Ideal.png -------------------------------------------------------------------------------- /report/img/Report_SSB_Sxa_Ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/img/Report_SSB_Sxa_Ideal.png -------------------------------------------------------------------------------- /report/src/Abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Abstract.tex -------------------------------------------------------------------------------- /report/src/Bibiliograph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Bibiliograph.tex -------------------------------------------------------------------------------- /report/src/Conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Conclusion.tex -------------------------------------------------------------------------------- /report/src/CumulantsIntro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/CumulantsIntro.tex -------------------------------------------------------------------------------- /report/src/CycloStationaryIntro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/CycloStationaryIntro.tex -------------------------------------------------------------------------------- /report/src/EnergyDetection.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report/src/Improvments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Improvments.tex -------------------------------------------------------------------------------- /report/src/Motivation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Motivation.tex -------------------------------------------------------------------------------- /report/src/Outline.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Outline.tex -------------------------------------------------------------------------------- /report/src/Results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/Results.tex -------------------------------------------------------------------------------- /report/src/ResultsUsingSDR.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/ResultsUsingSDR.tex -------------------------------------------------------------------------------- /report/src/TitlePage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/TitlePage.tex -------------------------------------------------------------------------------- /report/src/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/src/main.tex -------------------------------------------------------------------------------- /report/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/tmp/.gitignore -------------------------------------------------------------------------------- /report/tmp/main.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/tmp/main.aux -------------------------------------------------------------------------------- /report/tmp/main.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayguh/MastersProject/HEAD/report/tmp/main.log --------------------------------------------------------------------------------