Statistics
RANK
N/A
of 297,016
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
417 of 20,419
REPUTATION
3,897
AVERAGE RATING
4.80
CONTRIBUTIONS
28 Files
DOWNLOADS
87
ALL TIME DOWNLOADS
35345
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Submitted
LDL matrix factorization
Decomposition of a matrix into lower triangular matrix L and diagonal matrix D
5 years ago | 3 downloads |
Submitted
Stratified cross-validation for multi-label data sets
Greedily assign samples into folds based on their labels
5 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/ace2933a-6142-4352-937b-c02af21c7e30/d111dfc0-21d3-4a27-983f-7938c5de7210/images/screenshot.png)
Submitted
Squared Euclidean distance on heterogeneous data
Element-by-element distance between two tables with a mix of nominal and numerical variables
5 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/916dcbb2-fc61-428d-97bd-fb527d57d359/0b189500-8703-4543-bf0a-793055e7e079/images/screenshot.png)
Submitted
Distribution-balanced stratified cross-validation
An improvement to stratified cross-validation for small imbalanced data sets.
5 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/233459a6-523d-4cf7-91f3-ff539a1b58ce/f6c9980c-ed0d-4564-8289-e95c9274b48e/images/screenshot.png)
Submitted
Stratified matrix sampling
Random matrix sampling, which is stratified by rows and columns
5 years ago | 1 download |
Submitted
Sequential sign test
A non-parametric test, which terminates, once the results become significant
5 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/723a1e15-1781-4fe3-a313-227ba6eda1fb/6b279af9-a266-406c-8f5a-04b54d64b09c/images/screenshot.png)
Submitted
Laplacian Corrected Modified Naive Bayes
Fast linear classifier for nominal data
6 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/44d920aa-87c3-4a17-8b67-64418febf19d/835faef5-28df-4833-9c69-69dbaf8bdfd9/images/screenshot.jpeg)
Submitted
Average Filter
Average filter performs image smoothing with integral image method.
6 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40174/versions/9/screenshot.png)
Submitted
Magic kernel resizing
The “magic kernel” is a method of resampling images that gives clear results free of artifacts.
7 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40392/versions/5/screenshot.png)
Submitted
Sobel filter of predefined size
The function returns Sobel filter of predefined size.
7 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40472/versions/2/screenshot.png)
Submitted
Normalized Discounted Cumulative Gain (NDCG)
Returns the Normalized Discounted Cumulative Gain
7 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/65570/versions/2/screenshot.png)
Submitted
Get all topological sorting arangements
Generates all topological sorting arangements
9 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/56421/versions/2/screenshot.png)
Submitted
Bradley local image thresholding
A fast an well performing local image thresholding method.
10 years ago | 5 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40854/versions/5/screenshot.jpg)
Submitted
Rotate an image around a point
Performs rotation of an image around any point inside of the image.
10 years ago | 6 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40469/versions/4/screenshot.jpg)
Submitted
Bernsen local image thresholding
Implementation of Bernsen's thresholding method.
10 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40856/versions/2/screenshot.jpg)
Submitted
Remove ghosts from binarized images
This method removes speckles in the binarized images.
11 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/41786/versions/2/screenshot.jpg)
Submitted
Nick local image thresholding
Nick's binarization performs local image thresholding.
11 years ago | 26 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/42104/versions/1/screenshot.png)
Submitted
Wolf local image thresholding
Wolf's binarization performs local image thresholding.
11 years ago | 3 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/42101/versions/1/screenshot.png)
Submitted
Meanthresh local image thresholding
Meanthresh performs a simple local image thresholding.
12 years ago | 3 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/41787/versions/1/screenshot.png)
Submitted
Feng local image thresholding
Feng binarization method is well suited for ill illuminated or stained documents.
12 years ago | 2 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/41771/versions/1/screenshot.png)
Submitted
Standard deviation filter
Standard deviation filter for images based on integral images.
12 years ago | 1 download |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/41703/versions/1/screenshot.png)
Submitted
Niblack local thresholding
A traditional local image thresholding.
12 years ago | 6 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40849/versions/2/screenshot.png)
Submitted
Sauvola local image thresholding
Sauvola binarization method is well suited for ill illuminated or stained documents.
12 years ago | 6 downloads |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/40266/versions/5/screenshot.jpg)
Solved
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
12 years ago
Solved
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
12 years ago
Solved
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
12 years ago