Manish Kumar Saini has Published 958 Articles

How to Create Custom Axis Labels in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 12:30:12

821 Views

MATLAB programming has different built-in functions to customize the axis labels. In this article, we will explore the creation of custom axis labels of a plot in MATLAB. Functions to Customize Axis Labels MATLAB has the following built-in functions to create customized axis labels: ... Read More

How to Add Grid Lines in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 12:26:01

2K+ Views

MATLAB provides various options to control the visibility of gridlines in a plot. By using these options, we can display or hide both major and minor grid lines. Gridline Control Options MATLAB has the a “grid” option that can accept three control values, i.e. “on”, “off”, and “minor” to control ... Read More

Floating Point Precision in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:38:52

428 Views

In MATLAB, the numeric class consists of various data types, such as signed integers, unsigned integers, single-precision floating point number, and double-precision floating point numbers. In MATLAB, the floating point precision basically defines the number of significant digits that can be specified and manipulated by performing a floating point ... Read More

Create Array of Zeros in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:33:49

372 Views

In MATLAB, the variables are typically stored in the form of a matrix or array. Sometimes, we require a matrix or array of zeros to perform a specific operation. Therefore, MATLAB allows us to create a matrix or array of zeros. For this task, we can use MATLAB's built-in functions ... Read More

Change Background of Color Image into Grayscale in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:23:24

134 Views

We can obtain grayscale color by setting RGB values to 128. This means all color channels will have the same intensity values. The following MATLAB program illustrate the code for changing the background of a color image into grayscale. Example %MATLAB program to demonstrate changing color background into ... Read More

Checkbox in MATLAB App Building

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:20:13

291 Views

MATLAB provides an integrated app building toolbox that we can use to create a graphical user interface based app without writing any kind of code. Hence, MATLAB allows users to create professional applications by just drag and drop facility. After that the user can write a MATLAB code to define ... Read More

Automatically Plot Different Color Lines in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:11:02

952 Views

The different color lines in a plot allows us to plot and distinguish multiple data sets on a same plot area. MATLAB provides various built-in functions to assign different colors to different plot lines automatically. To automatically control the color of plot lines, we can use the following two MATLAB ... Read More

Combine two images in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:07:43

1K+ Views

MATLAB allows us to combine two images through various methods like image fusion, image join, image concatenate, image overlay, image blending, etc. In this tutorial, we will explore all these techniques of combining two images. Combine Two Image in MATLAB using `imtile()` Function In MATLAB, we can combine ... Read More

Balance Contrast Enhancement Technique in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 11:00:20

242 Views

In digital image processing, the contrast enhancement is a crucial technique used to improve visual quality of an image. The contrast enhancement technique adjusts the intensities of pixels to increase the range of brightness levels and highlights the differences between bright and dark regions of the image. MATLAB provides ... Read More

Calculate Complex Conjugate Transpose in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 10:58:11

337 Views

The Complex Conjugate Transpose is a mathematical operation performed on a matrix of complex numbers. It is also known as Hermitian Transpose of Matrix. In this operation, first the transpose of the matrix is taken and after that the conjugate of each element of the matrix. For example, if ... Read More

Advertisements