Manish Kumar Saini

Manish Kumar Saini

796 Articles Published

Articles by Manish Kumar Saini

Page 10 of 80

Implementation of Cayley-Hamilton\'s Theorem in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 25-Oct-2023 591 Views

In linear algebra, there is a fundamental theorem caled Cayley-Hamilton’s Theorem that is used to establish a relation between a square matrix and its characteristic equation. Read this article to learn the implementation of the Cayley-Hamilton’s theorem in MATLAB programming. Let's start with an overview of Cayley-Hamilton’s theorem. What is Cayley-Hamilton’s Theorem? In linear algebra, the Cayley-Hamilton’s theorem is a fundamental theorem that is used to establish a relationship between a square matrix and its characteristic equation. In other words, according Cayley-Hamilton’s theorem, a square matrix must satisfy its own characteristic equation. Explanation Consider a square matrix A of the ...

Read More

Image Sharpening Using Laplacian Filter and High Boost Filtering in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 25-Oct-2023 2K+ Views

In MATLAB, there are two commonly used image processing techniques namely, "Laplacian Filter" and "High Boost Filtering" that are used to sharpen an image. The Laplacian filter is mathematical operator used to sharpen an image in digital image processing. While, the high boost filtering is an image sharpening technique in digital image processing. In this tutorial, I will explain the process of image sharpening using Laplacian filter and high boost filtering in MATLAB. Let’s start with the basic introduction of Laplacian filter and high boost filtering. What is Laplacian Filter in MATLAB? In MATLAB, the Laplacian filter is mathematical tool ...

Read More

How to Swap Elements in a matrix Using MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 25-Oct-2023 963 Views

A matrix is a structure which is used to store and work with numeric data. Each value stored in a matrix is referred to as an element. Sometimes, we need to swap or change the position of these elements within the matrix. We can use MATLAB to perform this task i.e., swapping the elements of the matrix. In this tutorial, I will explain how we can use MATLAB to swap the elements in a matrix. Swap Elements in a Matrix MATLAB is a powerful tool that can be used to manipulate matrices. It provides various methods to swap the elements ...

Read More

How to Select Random Rows from a Matrix in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 25-Oct-2023 835 Views

In MATLAB, we can perform various operations on matrices. One such operation is selecting random rows from a matrix. MATLAB provides several different methods of selecting random rows from a matrix. In this tutorial, I will explain different methods of selecting rows from a matrix randomly using MATLAB. Select Random Rows from a Matrix in MATALB In MATLAB, we have various built-in functions that can be used to randomly select rows from a matrix. The following are some commonly used functions to randomly select rows from a matrix − randperm() Function randsample() Function randi() Function datasample() Function Let ...

Read More

How to Round toward Negative Infinity in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 25-Oct-2023 309 Views

Rounding toward negative infinity is a method of rounding a number "N" down to the nearest integer less than or equal to the number "N". This method is also called "flooring". In simple words, rounding a number toward negative infinity is a method of finding the largest integer number which is less than or equal to the given number. For example, consider a number 4.8, when this number is round to negative infinity. Then, it will become 4. This is because, 4 is the largest integer number less than or equal to 4.8. Similarly, if we have a negative ...

Read More

Difference between Conductor, Semiconductor, and Insulator

Manish Kumar Saini
Manish Kumar Saini
Updated on 21-Oct-2023 71K+ Views

In order to differentiate the Conductor, Semiconductor, and Insulator, first we have to understand their extent of forbidden band i.e. separation between their conduction and valance band. The main difference between the conductor, semiconductor and insulator is in their conductivity.ConductorA conductor is a type of material that allows the electric current to flow through it i.e. it possesses least resistance in the path of free electrons. In case of conductor, the valance and conduction bands overlap. Due to this overlapping, a small potential difference across a conductor causes the free electrons to constitute electric current.All the metals are conductors. The ...

Read More

Difference between IGBT and MOSFET

Manish Kumar Saini
Manish Kumar Saini
Updated on 21-Oct-2023 35K+ Views

Insulated Gate Bipolar Transistor (IGBT) and Metal Oxide Semiconductor Field Effect Transistor (MOSFET) are two types of transistors that are the basic building blocks of modern electronic circuits. Both IGBT and MOSFET are voltage-controlled devices. However, they are different in various aspects. Go through this article to get a basic overview of how these two transistors operate and how they are different from each other.What is IGBT?IGBT stands for Insulated Gate Bipolar Transistor. IGBT is a three terminal semiconductor device which is used in various electronic circuits for switching and amplification of signals. The three terminals of the IGBT are: ...

Read More

How to Remove Salt and Pepper Noise from Image Using MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Oct-2023 889 Views

MATLAB is a digital tool that is widely used in image processing, such as image transformation, noise removal from an image, detecting edges, and more. In this tutorial, I will explain how you can remove salt and pepper noise from a digital image using MATLAB. In a digital image, the "salt and pepper noise" is a type of impulse noise that degrade the image quality and cause errors in image processing, analysis, and transmission. Therefore, it is important to remove the salt and pepper noise from the image to minimize the challenges coming to image processing and analysis. Before ...

Read More

How to plot a Histogram in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Oct-2023 663 Views

A histogram is a graphical representation of data that shows the frequency distribution of data points. MATLAB provides a built−in function "histogram" to plot the histogram of a data set. What is a Histogram in MATLAB? In MATLAB, the histogram is a graphical method of representing the frequency distribution of a set of data points. It shows the frequency distribution of a data points within a certain interval called bin. In a histogram plot, the intervals or bins are represented over the x-axis and the frequency of data points over the y−axis. In MATLAB, the histogram is an efficient way ...

Read More

How to Find the Position of a Number in an Array in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Oct-2023 547 Views

The position of a number in an array or a matrix is also known as index of that number within the array or matrix. In MATLAB, arrays are one−indexed that means the index of the first element of the array will be "1", the index of the second element will be "2", and so on. To find the position of a number in an array, MATLAB provides various methods. Here, we will cover two commonly used methods, they are: Using "find" function. Using a loop mechanism. Let us explore these methods of finding the position of a number ...

Read More
Showing 91–100 of 796 articles
« Prev 1 8 9 10 11 12 80 Next »
Advertisements