|
| 1 | +# List of all files |
1 | 2 |
|
| 3 | +## Algorithms |
| 4 | + * Arithmetic Analysis |
| 5 | + * [Bisection](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/bisection.m) |
| 6 | + * [False Position](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/false_position.m) |
| 7 | + * [Newton](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/newton.m) |
| 8 | + * [Secant](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/arithmetic_analysis/secant.m) |
| 9 | + * Crypto |
| 10 | + * Sdbm-Hash |
| 11 | + * [Sdbm](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/crypto/sdbm-hash/sdbm.m) |
| 12 | + * Divisibility Of Integers |
| 13 | + * [Multiple](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Divisibility_of_integers/multiple.m) |
| 14 | + * Genetic-Algorithm |
| 15 | + * Minimization Of Polynomial Function |
| 16 | + * [Crossover](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/Crossover.m) |
| 17 | + * [Doublepointcrossover](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/DoublePointCrossover.m) |
| 18 | + * [Main](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/main.m) |
| 19 | + * [Minone](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/minone.m) |
| 20 | + * [Mutate](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/Mutate.m) |
| 21 | + * [Roulettewheelselection](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/RouletteWheelSelection.m) |
| 22 | + * [Run Ga](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/Run_GA.m) |
| 23 | + * [Singlepointcrossover](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/SinglePointCrossover.m) |
| 24 | + * [Sortpopulation](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/SortPopulation.m) |
| 25 | + * [Uniformcrossover](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Genetic-Algorithm/Minimization%20of%20polynomial%20function/UniformCrossover.m) |
| 26 | + * Imageprocessing |
| 27 | + * Lsb Based Image Steganography |
| 28 | + * [Decrypt](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/ImageProcessing/LSB%20based%20Image%20Steganography/decrypt.m) |
| 29 | + * [Steganography](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/ImageProcessing/LSB%20based%20Image%20Steganography/steganography.m) |
| 30 | + * Nearest Neighbhor Interpolation |
| 31 | + * [Zoomimg](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/ImageProcessing/Nearest%20Neighbhor%20Interpolation/zoomimg.m) |
| 32 | + * Machine Learning |
| 33 | + * Activation Functions |
| 34 | + * [Elu](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/ELU.m) |
| 35 | + * [Gelu](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/GELU.m) |
| 36 | + * [Hyperbolic Tangent(Without Inbuilt)](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Hyperbolic_tangent(without%20inbuilt).m) |
| 37 | + * [Leakyrelu](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/LeakyReLU.m) |
| 38 | + * [Linear(Without Inbuilt)](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Linear(without%20inbuilt).m) |
| 39 | + * [Parametric Relu](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Parametric_ReLU.m) |
| 40 | + * [Piecewise(Without Inbuilt)](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Piecewise(without%20inbuilt).m) |
| 41 | + * [Relu](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/ReLU.m) |
| 42 | + * [Relu6](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/ReLU6.m) |
| 43 | + * [Sigmoid(Without Inbuilt)](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Sigmoid(without%20inbuilt).m) |
| 44 | + * [Softmax](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Softmax.m) |
| 45 | + * [Threshold(Without Inbuilt)](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Activation%20Functions/Threshold(without%20inbuilt).m) |
| 46 | + * Gradient-Descent |
| 47 | + * [Gradientdescent](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Gradient-Descent/gradientdescent.m) |
| 48 | + * [Rungradientdescent](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Gradient-Descent/runGradientDescent.m) |
| 49 | + * Kmeans |
| 50 | + * [Kmeans](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/kmeans/kmeans.m) |
| 51 | + * Linear-Regression |
| 52 | + * [Computecost](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Linear-Regression/computecost.m) |
| 53 | + * [Gradientdescent](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Linear-Regression/gradientdescent.m) |
| 54 | + * [Plotdata](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Linear-Regression/plotdata.m) |
| 55 | + * [Runlinearregression](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Linear-Regression/runLinearRegression.m) |
| 56 | + * Logistic-Regression |
| 57 | + * [Costfunction](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/costfunction.m) |
| 58 | + * [Plotdata](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/plotdata.m) |
| 59 | + * [Plotdecisionboundary](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/plotdecisionboundary.m) |
| 60 | + * [Predict](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/Predict.m) |
| 61 | + * [Runlogisticregression](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/runLogisticRegression.m) |
| 62 | + * [Sigmoid](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Logistic-Regression/Sigmoid.m) |
| 63 | + * Nearest-Neighbor |
| 64 | + * [Brightness](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/machine_learning/Nearest-Neighbor/brightness.m) |
| 65 | + * Maths |
| 66 | + * [Euclidean Distance](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/euclidean_distance.m) |
| 67 | + * [Fibonacci Sequence](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/fibonacci_sequence.m) |
| 68 | + * [Find Factorial](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/find_factorial.m) |
| 69 | + * [Highest Common Factor](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/highest_common_factor.m) |
| 70 | + * [Is Armstrong](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/is_armstrong.m) |
| 71 | + * [Jaccard Similarity](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/jaccard_similarity.m) |
| 72 | + * [Lcm](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/lcm.m) |
| 73 | + * [Linear Diophantine Eqn](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/linear_diophantine_eqn.m) |
| 74 | + * [Prime Check](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/prime_check.m) |
| 75 | + * [Prime Factorial](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/prime_factorial.m) |
| 76 | + * [Shreedharacharyaformula](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/shreeDharacharyaFormula.m) |
| 77 | + * [Sum Of Digits](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/sum_of_digits.m) |
| 78 | + * [To Polar](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/to_polar.m) |
| 79 | + * [Twos Complement Of Binary](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/maths/twos_complement_of_binary.m) |
| 80 | + * Other |
| 81 | + * [Tic Tac Toe](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/other/tic_tac_toe.m) |
| 82 | + * Particle Swarm Optimization |
| 83 | + * Polynomial Minimization |
| 84 | + * [Code](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Particle_Swarm_Optimization/Polynomial%20Minimization/code.m) |
| 85 | + * [Parabola](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Particle_Swarm_Optimization/Polynomial%20Minimization/Parabola.m) |
| 86 | + * Searching |
| 87 | + * [Binary Search](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/binary_search.m) |
| 88 | + * [Linear Search](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/linear_search.m) |
| 89 | + * [Random Search](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/random_search.m) |
| 90 | + * [Ternarysearch](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Searching/ternarySearch.m) |
| 91 | + * Sieve Of Eratosthenes |
| 92 | + * [Sieveer](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Sieve_of_Eratosthenes/sieveER.m) |
| 93 | + * Sorting |
| 94 | + * [Bubble Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/bubble_sort.m) |
| 95 | + * [Cocktail Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/cocktail_sort.m) |
| 96 | + * [Comb Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/comb_sort.m) |
| 97 | + * [Counting Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/counting_sort.m) |
| 98 | + * [Gnome Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/gnome_sort.m) |
| 99 | + * [Heap Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/heap_sort.m) |
| 100 | + * [Insertion Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/insertion_sort.m) |
| 101 | + * [Merge Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/merge_sort.m) |
| 102 | + * [Permutationsort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/permutationSort.m) |
| 103 | + * [Quick Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/quick_sort.m) |
| 104 | + * [Select Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/select_sort.m) |
| 105 | + * [Shell Sort](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/sorting/shell_sort.m) |
| 106 | + * Strings |
| 107 | + * [Ispalindrome](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/algorithms/Strings/isPalindrome.m) |
| 108 | + |
| 109 | +## Image-Processing |
| 110 | + * Blob-Detection-Using-Matlab |
| 111 | + * [Blobdetection](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/image-processing/Blob-detection-using-Matlab/blobDetection.m) |
| 112 | + * [Blobusingvideo](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/image-processing/Blob-detection-using-Matlab/BlobUsingVideo.m) |
| 113 | + |
| 114 | +## Matlab For Beginners |
| 115 | + * Part 1(Learn Basic Programing) |
| 116 | + * [Add](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/add.m) |
| 117 | + * [Array](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/array.m) |
| 118 | + * [Comment](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/comment.m) |
| 119 | + * [Continuation](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/continuation.m) |
| 120 | + * [Equal](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/equal.m) |
| 121 | + * [Equal Add](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/equal_add.m) |
| 122 | + * [Formatted Output](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/formatted_output.m) |
| 123 | + * [Individual El Add](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/individual_eL_add.m) |
| 124 | + * [Intr Math Fun](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/intr_math_fun.m) |
| 125 | + * [Make Graph](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/make_graph.m) |
| 126 | + * [Math](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/math.m) |
| 127 | + * [Nam Var](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/nam_var.m) |
| 128 | + * [Print](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_1(learn_basic_programing)/print.m) |
| 129 | + * Part 2(Basic Looping) |
| 130 | + * [Program1](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program1.m) |
| 131 | + * [Program2](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program2.m) |
| 132 | + * [Program3](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program3.m) |
| 133 | + * [Program4](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program4.m) |
| 134 | + * [Program5](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program5.m) |
| 135 | + * [Program6](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program6.m) |
| 136 | + * [Program7](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/program7.m) |
| 137 | + * [Wh Loop](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_2(basic_looping)/wh_loop.m) |
| 138 | + * Part 3(Basic Branching) |
| 139 | + * [Program1](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_3(basic_branching)/program1.m) |
| 140 | + * [Program2](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_3(basic_branching)/program2.m) |
| 141 | + * [Program3](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_3(basic_branching)/program3.m) |
| 142 | + * [Program4](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_3(basic_branching)/program4.m) |
| 143 | + * Part 4(Array Nd Matrix) |
| 144 | + * [Program1](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program1.m) |
| 145 | + * [Program10](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program10.m) |
| 146 | + * [Program11](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program11.m) |
| 147 | + * [Program12](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program12.m) |
| 148 | + * [Program2](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program2.m) |
| 149 | + * [Program3](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program3.m) |
| 150 | + * [Program4](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program4.m) |
| 151 | + * [Program5](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program5.m) |
| 152 | + * [Program6](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program6.m) |
| 153 | + * [Program7](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program7.m) |
| 154 | + * [Program8](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program8.m) |
| 155 | + * [Program9](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/matlab_for_beginners/part_4(array_nd_matrix)/program9.m) |
| 156 | + |
| 157 | +## Project-Euler |
| 158 | + * Problem1 |
| 159 | + * [Multiple](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem1/multiple.m) |
| 160 | + * [Solv](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem1/solv.m) |
| 161 | + * Problem2 |
| 162 | + * [Fib](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem2/fib.m) |
| 163 | + * [Solv](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem2/solv.m) |
| 164 | + * Problem3 |
| 165 | + * [Isprime](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem3/isPrime.m) |
| 166 | + * [Pfz](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem3/pfz.m) |
| 167 | + * [Solv](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem3/solv.m) |
| 168 | + * Problem4 |
| 169 | + * [Ispalindromenumber](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem4/isPalindromeNumber.m) |
| 170 | + * [Solv](https://github.com/TheAlgorithms/MATLAB-Octave/blob/master/project-euler/Problem4/solv.m) |
0 commit comments