Found 214 Articles for Data Analysis

How to Generate Periodic and Aperiodic Sequence in MATLAB?

Manish Kumar Saini
Updated on 05-Oct-2023 14:53:50

112 Views

A periodic sequence is one which repeats its pattern at regular intervals, whereas an aperiodic sequence is another type of sequence in which there is no regularity in the pattern. We can use MATLAB to generate periodic and aperiodic sequences. Before going to learn about generating periodic and aperiodic sequences using MATLAB, let us first get a brief overview of periodic and aperiodic sequences individually. What is a Periodic Sequence? A sequency of data points which has a regular pattern that repeats itself at a certain interval is called a periodic sequence. The interval over which the pattern of the ... Read More

How to Generate Narrowband and Wideband FM Signal using MATLAB?

Manish Kumar Saini
Updated on 05-Oct-2023 14:40:38

246 Views

FM stands for Frequency Modulation, a technique used in communication systems for long distance transmission of data and information. The frequency modulation involves the alteration in the frequency of the signal so that it can be transmitted over long distances without any distortion of the information. In this tutorial, I am going to explain how to generate narrowband and wideband FM signal using MATLAB. Before going to learn about generating narrowband and wideband FM signals, let us first get an overview of FM signal and its types. What is an FM Signal? An FM signal is a modulated signal which ... Read More

How to Find Percentage of Similarity between Two Matrices in MATLAB?

Manish Kumar Saini
Updated on 05-Oct-2023 15:02:03

77 Views

As we know, MATLAB is a powerful tool that can be used to perform various operations on matrices. One such operation is finding the percentage of similarity between two matrices. Finding percentage of similarity between two matrices is crucial in various application such as digital image processing, data analysis, machine learning, and more. This tutorial will help you understand the step-by-step process of finding the percentage of similarity between two matrices using MATLAB. What is Percentage of Similarity Between Two Matrices? The measure that shows how closely two matrices are related in some aspect is called "similarity between two matrices". ... Read More

How to Find Interior and Exterior Skeleton of Binary Images Using MATLAB?

Manish Kumar Saini
Updated on 05-Oct-2023 14:35:42

66 Views

In a binary image, the interior and exterior skeletons are used to represent the essential structure of the objects and shaped within the image. In this article, I am going explain the process of finding the interior and exterior skeleton of binary image using MATLAB. Before discussing the process of finding the interior and exterior skeletons of a binary image. let us first get an overview of these two types of skeletons. What is the Interior Skeleton of Binary Image? In a binary image, the "interior skeleton" represents the centerline of the foreground objects. It is basically a thin representation ... Read More

How to Create a Partially Colored Gray Image in MATLAB?

Manish Kumar Saini
Updated on 05-Oct-2023 14:33:13

42 Views

We can use MATLAB to create a partially colored gray image, which we will discuss in this tutorial. But before that, let us first get an overview of what a partially colored gray image is used for. What is a Partially Colored Gray Image? A digital image in which some parts or objects are colored while the rest parts are in gray scale is called a partially colored gray image. In simple terms, a digital image which combines both color and gray scale objects in a single image area is called a partially colored gray image. Partially colored gray images ... Read More

Histogram Equalization Without Using histeq() Function in MATLAB

Manish Kumar Saini
Updated on 05-Oct-2023 14:31:00

335 Views

In digital image processing, histogram equalization is a common method of improving the visual quality of a digital image. We can perform histogram equalization of a digital image using MATLAB. We have a built-in function "histeq" in MATLAB to perform this task. However, we can also perform histogram equalization without using the MATLAB’s "histeq" function. In this tutorial, I will show you the process of histogram equalization without using "histeq" function in MATLAB. But before that let’s get an overview of histogram and histogram equalization in digital image processing. What is a Histogram and Histogram Equalization? In digital image processing, ... Read More

Filtering After Upsampling in MATLAB Interpolation

Manish Kumar Saini
Updated on 05-Oct-2023 14:29:36

71 Views

In interpolation, filtering after upsampling is an important step to avoid the aliasing and reconstruction of a filtered signal. In MATLAB, there are various built-in functions that can be used to perform filtering after upsampling in interpolation. Before discussing the process of filtering after upsampling, let us first know about filtering and upsampling in interpolation. What are Upsampling and Filtering in Interpolation? In interpolation, upsampling and filtering are two crucial processes used to increase the number of samples in a signal. Upsampling is a process of adding zeros between the existing samples of the signal. It increases the sample ... Read More

Estimation of gaussian noise in noisy image using MATLAB

Manish Kumar Saini
Updated on 05-Oct-2023 14:27:35

172 Views

In digital images, the gaussian noise is a type of noise that follows a normal or Gaussian distribution. In a digital image, the gaussian noise is visualized as a random variation in pixel intensities. The estimation of gaussian noise is one of the important tasks in digital image processing utilized to perform various operations such as denoising, image restoration, and more. Methods of Estimating Gaussian Noise in Digital Image We can estimate the Gaussian noise in a digital image using various methods. The following are some commonly used methods for estimating the gaussian noise. Standard Deviation Method Histogram Analysis ... Read More

Denoising techniques in digital image processing using MATLAB

Manish Kumar Saini
Updated on 05-Oct-2023 14:23:19

167 Views

In digital image processing, denoising is a process of reducing or removing the unwanted noise from a digital image. The primary objective of this process is to enhance the visual quality of an image. Before discussing the different denoising techniques in digital image processing, let us first get an overview of the basics of denoising. What is Denoising in Digital Image Processing? In a digital image, any kind of variation that is unwanted is termed as noise. Noise in a digital image can occur due to different reasons such as environmental conditions, hardware malfunctioning, transmission errors, etc. The process of ... Read More

Handle Object Behavior in MATLAB

Manish Kumar Saini
Updated on 07-Sep-2023 13:56:30

33 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 other function. In MATLAB programming, the handles are passed by reference instead of value. Therefore, when any change is made in the object's property, it will reflect across all the references. The use of handles in a MATLAB program makes it more memory efficient because it does not require copying ... Read More

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