@@ -26,37 +26,49 @@ You can run and edit the algorithms or contribute to them using [Gitpod.io](http
2626---
2727
2828* project-euler
29- * Problem 1
30- * Problem 2
31- * Problem 3
32- * Problem 4
29+ * [ Problem 1] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/project-euler/Problem1 )
30+ * [ Problem 2] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/project-euler/Problem2 )
31+ * [ Problem 3] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/project-euler/Problem3 )
32+ * [ Problem 4] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/project-euler/Problem4 )
3333
3434* algorithms
35- * Sieve_of_Eratosthenes
35+ * [ Sieve_of_Eratosthenes] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/algorithms/Sieve_of_Eratosthenes )
3636 * crypto
37- * sdbm-hash
37+ * [ sdbm-hash] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/algorithms/crypto/sdbm-hash )
3838 * searching
39- * counting-sort
39+ * [ Binary Search] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/binary_search.m )
40+ * [ Linear Search] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/linear_search.m )
4041 * Strings
41- * Palindrome
42+ * [ Palindrome] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Strings/isPalindrome.m )
4243 * maths
43- * to_polar
44+ * [ to_polar] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/to_polar.m )
45+ * [ Fibonacci Sequence] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/fibonacci_sequence.m )
46+ * [ Factorial] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/find_factorial.m )
47+ * [ Highest Common Factor] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/highest_common_factor.m )
48+ * [ Jaccard Similarity] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/jaccard_similarity.m )
49+ * [ Prime Check] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/prime_check.m )
50+ * [ Prime Factorial] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/prime_factorial.m )
4451 * arithmetic_analysis
45- * bisection
46- * newton
47- * secant
48- * false position
52+ * [ bisection] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/bisection.m )
53+ * [ newton] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/newton.m )
54+ * [ secant] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/secant.m )
55+ * [ false position] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/false_position.m )
4956 * other
50- * tic_tac_toe
57+ * [ tic_tac_toe] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/other/tic_tac_toe.m )
58+ * sorting
59+ * [ Bubble Sort] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/bubble_sort.m )
60+ * [ Counting Sort] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/counting_sort.m )
61+ * [ Insertion Sort] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/insertion_sort.m )
62+ * [ Merge Sort] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/merge_sort.m )
5163
5264
5365* machine-learning
5466 * nearest neighbor
55- * brightness (recognizes the brightness of a color)
56- * k-means clustering
67+ * [ brightness (recognizes the brightness of a color) ] ( https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Nearest-Neighbor/brightness.m )
68+ * [ k-means clustering] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/algorithms/machine_learning/kmeans )
5769
5870* image-processing
59- * Blob-detection
71+ * [ Blob-detection] ( https://github.com/TheAlgorithms/MATLAB-Octave/tree/master/image-processing/Blob-detection-using-Matlab )
6072
6173
6274---
0 commit comments