随机森林matlab打码源,随机森林回归matlab代码

【实例简介】

随机森林回归matlab代码,可用于回归和分类,简单易用

【实例截图】

【核心代码】

39713255RF_MexStandalone-v0.02-precompiled

└── RF_MexStandalone-v0.02-precompiled

├── randomforest-matlab

│   ├── RF_Class_C

│   │   ├── classRF_predict.m

│   │   ├── classRF_train.m

│   │   ├── Compile_Check

│   │   ├── compile_linux.m

│   │   ├── compile_windows.m

│   │   ├── data

│   │   │   ├── twonorm.mat

│   │   │   ├── X_twonorm.txt

│   │   │   └── Y_twonorm.txt

│   │   ├── Makefile

│   │   ├── Makefile.windows

│   │   ├── mexClassRF_predict.mexw32

│   │   ├── mexClassRF_predict.mexw64

│   │   ├── mexClassRF_train.mexw32

│   │   ├── mexClassRF_train.mexw64

│   │   ├── precompiled_rfsub

│   │   │   ├── win32

│   │   │   │   └── rfsub.o

│   │   │   └── win64

│   │   │   └── rfsub.o

│   │   ├── README.txt

│   │   ├── rfsub.o

│   │   ├── src

│   │   │   ├── classRF.cpp

│   │   │   ├── classTree.cpp

│   │   │   ├── cokus.cpp

│   │   │   ├── cokus_test.cpp

│   │   │   ├── mex_ClassificationRF_predict.cpp

│   │   │   ├── mex_ClassificationRF_train.cpp

│   │   │   ├── qsort.c

│   │   │   ├── rf.h

│   │   │   ├── rfsub.f

│   │   │   ├── rfutils.cpp

│   │   │   └── twonorm_C_wrapper.cpp

│   │   ├── test_ClassRF_extensively.m

│   │   ├── tutorial_ClassRF.m

│   │   ├── twonorm_C_devcpp.dev

│   │   └── Version_History.txt

│   └── RF_Reg_C

│   ├── Compile_Check_kcachegrind

│   ├── Compile_Check_memcheck

│   ├── compile_linux.m

│   ├── compile_windows.m

│   ├── data

│   │   ├── diabetes.mat

│   │   ├── X_diabetes.txt

│   │   └── Y_diabetes.txt

│   ├── diabetes_C_devc.dev

│   ├── Makefile

│   ├── mexRF_predict.mexw32

│   ├── mexRF_predict.mexw64

│   ├── mexRF_train.mexw32

│   ├── mexRF_train.mexw64

│   ├── README.txt

│   ├── regRF_predict.m

│   ├── regRF_train.m

│   ├── src

│   │   ├── cokus.cpp

│   │   ├── cokus_test.cpp

│   │   ├── diabetes_C_wrapper.cpp

│   │   ├── mex_regressionRF_predict.cpp

│   │   ├── mex_regressionRF_train.cpp

│   │   ├── qsort.c

│   │   ├── reg_RF.cpp

│   │   └── reg_RF.h

│   ├── test_RegRF_extensively.m

│   ├── tutorial_RegRF.m

│   └── Version_History.txt

└── README_Windows_binary.txt

11 directories, 61 files

你可能感兴趣的:(随机森林matlab打码源)