├── Chapter02 ├── DataOrganization.m ├── Exporting.m ├── Ferrari.txt ├── Importing.m ├── MyMatrix.csv ├── MyMatrix.txt ├── MyMatrix.xls ├── apollo.wav ├── capri.xlsx ├── coliseum.jpg ├── matrix.csv ├── matrix.txt └── museum.xls ├── Chapter03 ├── CleaningData.m ├── CleaningData.xlsx ├── EmergencyCalls.xlsx ├── EmergencyCallsNew.xlsx ├── ExploratoryStatistics.m ├── ExploratoryVisualization.m ├── GlassIdentificationDataSet.xlsx └── LifeExpectancy.xlsx ├── Chapter04 ├── AirfoilSelfNoise.csv ├── RegressionExample.m ├── VehiclesItaly.xlsx └── employees.xlsx ├── Chapter05 ├── DecisionTrees.m ├── DiscriminantAnalysis.m ├── NaiveBayes.m └── NearestNeighborCassifiers.m ├── Chapter06 ├── ClimaticData.xls ├── GaussianMixtureModels.m ├── HierarchicalClustering.m ├── KMeansExample.m ├── KMedoids Example.m ├── Minerals.xls └── PeripheralLocations.xls ├── Chapter07 └── EngineFitting.m ├── Chapter08 ├── PrincipalComponentAnalysis.m ├── StepwiseRegression.m ├── seeds_dataset.csv └── yacht_hydrodynamics.csv ├── Chapter09 ├── ClusterData.dat ├── ConcreteQualityFitting.m ├── Concrete_Data.xls ├── StudentClustering.m └── ThyroidDisease.m ├── LICENSE └── README.md /Chapter02/DataOrganization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/DataOrganization.m -------------------------------------------------------------------------------- /Chapter02/Exporting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/Exporting.m -------------------------------------------------------------------------------- /Chapter02/Ferrari.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/Ferrari.txt -------------------------------------------------------------------------------- /Chapter02/Importing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/Importing.m -------------------------------------------------------------------------------- /Chapter02/MyMatrix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/MyMatrix.csv -------------------------------------------------------------------------------- /Chapter02/MyMatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/MyMatrix.txt -------------------------------------------------------------------------------- /Chapter02/MyMatrix.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/MyMatrix.xls -------------------------------------------------------------------------------- /Chapter02/apollo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/apollo.wav -------------------------------------------------------------------------------- /Chapter02/capri.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/capri.xlsx -------------------------------------------------------------------------------- /Chapter02/coliseum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/coliseum.jpg -------------------------------------------------------------------------------- /Chapter02/matrix.csv: -------------------------------------------------------------------------------- 1 | 10,20,30 2 | 40,50,60 3 | 70,80,90 -------------------------------------------------------------------------------- /Chapter02/matrix.txt: -------------------------------------------------------------------------------- 1 | 10,20,30 2 | 40,50,60 3 | 70,80,90 -------------------------------------------------------------------------------- /Chapter02/museum.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter02/museum.xls -------------------------------------------------------------------------------- /Chapter03/CleaningData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/CleaningData.m -------------------------------------------------------------------------------- /Chapter03/CleaningData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/CleaningData.xlsx -------------------------------------------------------------------------------- /Chapter03/EmergencyCalls.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/EmergencyCalls.xlsx -------------------------------------------------------------------------------- /Chapter03/EmergencyCallsNew.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/EmergencyCallsNew.xlsx -------------------------------------------------------------------------------- /Chapter03/ExploratoryStatistics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/ExploratoryStatistics.m -------------------------------------------------------------------------------- /Chapter03/ExploratoryVisualization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/ExploratoryVisualization.m -------------------------------------------------------------------------------- /Chapter03/GlassIdentificationDataSet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/GlassIdentificationDataSet.xlsx -------------------------------------------------------------------------------- /Chapter03/LifeExpectancy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter03/LifeExpectancy.xlsx -------------------------------------------------------------------------------- /Chapter04/AirfoilSelfNoise.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter04/AirfoilSelfNoise.csv -------------------------------------------------------------------------------- /Chapter04/RegressionExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter04/RegressionExample.m -------------------------------------------------------------------------------- /Chapter04/VehiclesItaly.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter04/VehiclesItaly.xlsx -------------------------------------------------------------------------------- /Chapter04/employees.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter04/employees.xlsx -------------------------------------------------------------------------------- /Chapter05/DecisionTrees.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter05/DecisionTrees.m -------------------------------------------------------------------------------- /Chapter05/DiscriminantAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter05/DiscriminantAnalysis.m -------------------------------------------------------------------------------- /Chapter05/NaiveBayes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter05/NaiveBayes.m -------------------------------------------------------------------------------- /Chapter05/NearestNeighborCassifiers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter05/NearestNeighborCassifiers.m -------------------------------------------------------------------------------- /Chapter06/ClimaticData.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/ClimaticData.xls -------------------------------------------------------------------------------- /Chapter06/GaussianMixtureModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/GaussianMixtureModels.m -------------------------------------------------------------------------------- /Chapter06/HierarchicalClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/HierarchicalClustering.m -------------------------------------------------------------------------------- /Chapter06/KMeansExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/KMeansExample.m -------------------------------------------------------------------------------- /Chapter06/KMedoids Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/KMedoids Example.m -------------------------------------------------------------------------------- /Chapter06/Minerals.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/Minerals.xls -------------------------------------------------------------------------------- /Chapter06/PeripheralLocations.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter06/PeripheralLocations.xls -------------------------------------------------------------------------------- /Chapter07/EngineFitting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter07/EngineFitting.m -------------------------------------------------------------------------------- /Chapter08/PrincipalComponentAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter08/PrincipalComponentAnalysis.m -------------------------------------------------------------------------------- /Chapter08/StepwiseRegression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter08/StepwiseRegression.m -------------------------------------------------------------------------------- /Chapter08/seeds_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter08/seeds_dataset.csv -------------------------------------------------------------------------------- /Chapter08/yacht_hydrodynamics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter08/yacht_hydrodynamics.csv -------------------------------------------------------------------------------- /Chapter09/ClusterData.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter09/ClusterData.dat -------------------------------------------------------------------------------- /Chapter09/ConcreteQualityFitting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter09/ConcreteQualityFitting.m -------------------------------------------------------------------------------- /Chapter09/Concrete_Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter09/Concrete_Data.xls -------------------------------------------------------------------------------- /Chapter09/StudentClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter09/StudentClustering.m -------------------------------------------------------------------------------- /Chapter09/ThyroidDisease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/Chapter09/ThyroidDisease.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MATLAB-for-Machine-Learning/HEAD/README.md --------------------------------------------------------------------------------