Manish Kumar Saini has Published 958 Articles

Finding Inverse of a Square Matrix using Cayley Hamilton Theorem in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 15:25:55

384 Views

Let us start this tutorial with a brief discussion on "what is inverse of a square matrix" and "the significance of Cayley Hamilton theorem". What is Inverse of Square Matrix? In linear algebra, there is a fundamental concept called the inverse of a square matrix. Consider a square matrix ‘A’, ... Read More

Gray Level Co-occurrence Matrix in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:59:10

368 Views

In digital image processing, the gray level co-occurrence matrix, also known as GLCM, is a statistical method employed for holding the spatial relationship between pairs of pixels in a digital image. The gray level co-occurrence is a method of representing the way in which different combinations of pixel intensities are ... Read More

Randomly Shuffle Rows in MATLAB Matrix

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:58:13

2K+ Views

MATLAB is a great tool to process matrices. It provides a large number built-in functions and processing methods that we can use to manipulate our matrices just by writing a small piece of MATLAB codes. Such an operation that we can perform on matrices in MATLAB is random shuffling of ... Read More

Handle Object Behavior in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:56:30

155 Views

MATLAB is an object-oriented programming (OOP) language that allows us to create objects and define their behavior. In MATLAB, there is a data type called 'Handle' which is used to point an object. Handles in MATLAB also allows us to pass a function as an input argument of some ... Read More

Gray Scale to Pseudo Color Transformation in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:49:45

526 Views

MATLAB provides an easy and efficient way of processing images. In this tutorial, we will explore how to perform gray scale to pseudo color transformation in MATLAB. In MATLAB, the gray scale to pseudo color transformation is an image processing technique which is used to create a visually appealing image ... Read More

Function with Variable Number of Input Arguments in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:45:59

286 Views

MATLAB is a high-level programming language that has capability to define a function that can accept a variable number of input arguments. In MATLAB, there is no need of defining any additional function or array to define a function with variable number of input arguments. How to Create a Function ... Read More

Forward and Inverse Fourier Transform of an Image in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:43:38

777 Views

In mathematics, the Fourier transform is a mathematical tool used for converting a function or signal from the time domain to the frequency domain. It is widely used in the field of signal processing, communication, image processing and analysis, etc. Before proceed to find the forward and inverse Fourier transformer ... Read More

How to Create an Image Component in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:39:39

193 Views

In MATLAB, we can create various types of GUI components like EditField, buttons, hyperlink, image, etc. In this tutorial, I will explain how can you create an image component in MATLAB programming. But before that let us first get an overview of image component in MATLAB. What is Image Component ... Read More

How to Append Data to a File in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:24:41

2K+ Views

In MATLAB, appending is nothing but the process of adding data to a text file which already exists in the memory or workspace. In MATLAB, there is a built-in function 'fprintf' which is used to append or add data to a file. The 'fprintf' function allows users to add ... Read More

How to add White Gaussian Noise to Signal using MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 13:15:59

932 Views

A type of noise signal which has a flat power spectral density (PSD) across all frequencies is referred to as white gaussian noise or white noise. In this tutorial, I will explain how to add white gaussian noise to signal using MATLAB. But before that let get a brief overview ... Read More

Advertisements