Found 214 Articles for Data Analysis

Gray Level Co-occurrence Matrix in MATLAB

Manish Kumar Saini
Updated on 07-Sep-2023 13:59:10

116 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 arranged within the image. It is mainly used to specify the texture property of an image and provide the information about the patterns, variations, and structures occurring in the pixel values within spatial regions of the image. What is Gray Level Co-Occurrence Matrix? As stated above, the gray level co-occurrence ... Read More

Gray Scale to Pseudo Color Transformation in MATLAB

Manish Kumar Saini
Updated on 07-Sep-2023 13:49:45

151 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 by mapping the intensity values of the gray scale image to a specific color. If we want to convert a gray scale image to a pseudo color image using MATLAB, then we can use a built-in function in MATLAB, which is ‘colormap’ and a color map matrix. Now, let us ... Read More

Function with Variable Number of Input Arguments in MATLAB

Manish Kumar Saini
Updated on 07-Sep-2023 13:45:59

108 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 with Variable Number of Input Arguments in MATLAB? In MATLAB, when the keyword "varargin" is used in the function definition statement then it enables the function to take any number of input arguments. The "varargin" keyword is composed of "VARiable ARGument INput". It is important to note that the keyword ... Read More

Forward and Inverse Fourier Transform of an Image in MATLAB

Manish Kumar Saini
Updated on 07-Sep-2023 13:43:38

276 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 of an image using MATLAB, let us get a brief overview of Fourier transform and its inverse. Forward Fourier Transform Fourier transform or Forward Fourier transform is a mathematical operation that is used to transform a signal from the time domain into the frequency domain. Therefore, the forward Fourier transform ... Read More

Randomly Shuffle Rows in MATLAB Matrix

Manish Kumar Saini
Updated on 07-Sep-2023 13:58:13

719 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 rows of a matrix. In this tutorial, I will explain how you can randomly shuffle rows of a matrix using MATLAB. Randomly Shuffle Rows of a Matrix in MATLAB MATLAB is a complete solution to manipulate matrices using computers. In MATLAB, we can very easily shuffle rows of a matrix ... Read More

How to Create an Image Component in MATLAB?

Manish Kumar Saini
Updated on 07-Sep-2023 13:39:39

46 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 in MATLAB? In MATLAB, Image Component is a GUI (Graphical User Interface) component used to show an image in a MATLAB application. This component is widely used in applications where it is required to handle images like in image processing and analysis. To create an image component, MATLAB provides a ... Read More

How to Append Data to a File in MATLAB?

Manish Kumar Saini
Updated on 07-Sep-2023 13:24:41

810 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 or writer formatted data to a text file. By default, this function adds the data to the end of the text file. Let us now see the step-by-step process to append data to a file in MATLAB. How to Append Data to a File? The step-by-step process to append ... Read More

How to add White Gaussian Noise to Signal using MATLAB?

Manish Kumar Saini
Updated on 07-Sep-2023 13:15:59

322 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 of white gaussian noise. What is White Gaussian Noise? A type of noise signal which has equal energy at all frequencies within a specified frequency range is termed as white gaussian noise. Therefore, white gaussian noise has a flat power spectral density (PSD) across all frequencies. In the case of ... Read More

How to Add an EditField Component in MATLAB?

Manish Kumar Saini
Updated on 07-Sep-2023 13:09:45

48 Views

MATLAB allows us to create graphical user interface (GUI) applications without proper knowledge of coding. It has a built-in component library containing a wide range of GUI components such as buttons, edit fields, numeric edit fields, hyperlinks, and many more. In this tutorial, I will explain how you can create an EditField component in MATLAB. What is an EditField Component in MATLAB? In MATLAB, the EditField component is a graphical user interface (GUI) component which is used to allow your users to input and edit text or number. The EditField component is one the fundamental GUI components used to build ... Read More

How to Add a ButtonGroup in MATLAB?

Manish Kumar Saini
Updated on 07-Sep-2023 15:28:01

66 Views

In MATLAB, we can create different types of graphical user interface (GUI) components like Edit Fields, Hyperlinks, Buttons, and more. In this tutorial, we shall confine our attention to add a ButtonGroup in MATLAB. What is a ButtonGroup in MATLAB? MATLAB is an environment that provides an easy way of creating GUI applications without proper knowledge of computer programming. In MATLAB, there is a graphical user interface (GUI) component namely, ButtonGroup, which allows us to create a group of radio buttons or option buttons. One can select only one radio button within the group at a time. This GUI component ... Read More

Previous 1 ... 6 7 8 9 10 ... 22 Next
Advertisements