1.
Data Mining in MATLAB: Mahalanobis Distance The mahal or pdist functions in the Statistics Toolbox can calculate the Mahalanobis distance. It is also very easy to calculate in base MATLAB. ...
2.
Data Mining in MATLAB: Two Bits of Code In the Nov-17-2006 entry, Mahalanobis Distance, I mentioned that I had implemented my own Mahalanobis distance routine in MATLAB. ...
3.
Data Mining in MATLAB: Getting Data Into and Out of Excel Feb 28, 2009 ... Getting Data Into Excel in MATLAB Writing data to Excel documents is also quite simple. Just use xlswrite: xlswrite(FileName,DataArray ...
4.
Data Mining in MATLAB: Weighted Regression in MATLAB May 3, 2007 ... There are also a number of on-line resources for performing weighted regression in base MATLAB, such as: Optimization Tips and Tricks, ...
5.
Data Mining in MATLAB: Generating Hexagonal Grids for Fun and Profit Hexagonal grids, one alternative to square grids, are much cleaner in their approximation of circular regions. All six immediate neighbors of any hexagonal ...
6.
Data Mining in MATLAB: Getting Data Into and Out of Excel Feb 28, 2009 ... Exploring data mining using MATLAB (and sometimes MATLAB ... Getting Data From Excel in MATLAB ... Getting Data Into Excel in MATLAB ...
7.
Data Mining in MATLAB: Two Bits of Code In the Nov-17-2006 entry, Mahalanobis Distance, I mentioned that I had implemented my own Mahalanobis distance routine in MATLAB. ...
8.
Data Mining in MATLAB Happily, MATLAB can easily get data from or send data to Excel documents. ..... join (1); k-fold cross validation (2); k-fold cross-validation (1); L-1 (2) ...
9.
Data Mining in MATLAB: Mahalanobis Distance In MATLAB: % Euclidean distance between vectors 'A' and 'B', original recipe EuclideanDistance = sqrt(sum( (A - B) .^ 2 )) ...
10.
Data Mining in MATLAB: Linear Regression in MATLAB stepwisefit: stepwise linear regression ... The May-03-2007 posting, Weighted Regression in MATLAB. The Oct-23-2007 posting, L-1 Linear Regression. ...
|