Manish Kumar Saini has Published 1143 Articles

Find Index of Cells Containing My String in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 12:11:01

159 Views

In MATLAB, a cell array is a type of data structure used to hold data of different data types and sizes. In short, a cell array allows us to store different types of data like numbers, characters, strings, arrays, and more. In a cell array, each cell can contain a ... Read More

Extract Subsets of Consecutive Entries in a Matrix in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 10:51:31

124 Views

MATLAB is a powerful tool to manipulate matrices. In this article, we will explore how to extract subsets of consecutive entries in a matrix using MATLAB. But before that let's first get an overview of subsets of consecutive entries in a matrix. In a matrix, a set of elements that ... Read More

Double Interpolation using Lookup Tables in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 07-Sep-2023 10:38:10

310 Views

Double Interpolation is a mathematical method used to calculate values within a set of data points. It is basically an advanced version of interpolation, as it is used to interpolate a function that depends on two variables. In other words, the double interpolation is a method of estimating value of ... Read More

What is Color Histogram Equalization in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 16:01:03

264 Views

In digital image processing, there is a technique called histogram equalization which is used to enhance the visual quality of an image by manipulating contrast in the image. Histogram equalization improves the quality of an image by redistributing the pixel values across the entire image, so that the histogram of ... Read More

What are different types of denoising filters in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 16:00:05

378 Views

In MATLAB, a denoising filter is a tool that can reduce or remove noise from a digital image or a digital signal. As we know, noise is an unwanted signal or disturbance in a digital signal that impacts the quality of the signal or can cause errors in the signal ... Read More

Trapezoidal numerical integration in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 15:58:09

384 Views

In mathematics, trapezoidal numerical integration is a method of approximating the definite integral of a function over a certain interval. In the trapezoidal numerical integration, a curve is divided into multiple trapezoids and then areas of all the trapezoids are calculated and added to estimate the total area under the ... Read More

How To Create Video from Sequence of Images Using MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 15:57:07

181 Views

In MATLAB, we can create a video from a sequence of images. In this tutorial, we will explore the steps involved in creating a video from an image sequence and will take an example to understand the concept practically. Process of Creating Video From a Sequence of Images The step-by-step ... Read More

How to Create a Textarea Component in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 15:54:37

186 Views

In MATLAB, we have a built-in GUI App Designer environment that allows us to develop various types of GUI (Graphical User Interface) applications with proper knowledge of software engineering and programming. In this MATLAB’s app designer environment, we can create various kinds of GUI components such as TextFields, Buttons, NumEditFields, ... Read More

How to Create a New Matrix from All Possible Row Combinations in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 15:52:29

167 Views

In MATLAB, a matrix is nothing but a 2D (two-dimensional) array of numbers arranged in multiple rows and columns. Matrix is the most elementary data structure in MATLAB programming which is utilized to store and manipulate data. In this tutorial, we will learn how to create a new matrix from ... Read More

How to Create a Matrix from a Nested Loop in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Sep-2023 15:51:17

520 Views

MATLAB is an efficient tool to create matrices. In MATLAB, a matrix is a two-dimensional array that can store data in the form of rows and columns. MATLAB allows us to create matrices by using nested loops. In this tutorial, we will learn how to create a matrix using a ... Read More

Advertisements