Manish Kumar Saini has Published 958 Articles

Difference between IPS Panel and VA Panel

Manish Kumar Saini

Manish Kumar Saini

Updated on 24-Jul-2023 14:09:38

1K+ Views

LCD (Liquid Crystal Displays) are used in a variety of electronic devices like TVs, computer monitors, digital watches, multi meters, automobile appliances, etc. LCD displays generally come with two different types of display panels namely, Vertical Alignment (VA) Panel and In-Phase Switching (IPS) Panels. In this article, we will explore ... Read More

Difference between Bluetooth 4.0 and Bluetooth 5.0

Manish Kumar Saini

Manish Kumar Saini

Updated on 24-Jul-2023 14:07:34

2K+ Views

Bluetooth is a technology used for data transfer between electronic devices wirelessly. It is a short distance data communication medium, allowing exchange of data and information without the need of cables. Bluetooth technology uses radio waves for wireless data communication. It follows the master-slave architecture, i.e. one device works as ... Read More

Generating Random Number in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 16:39:28

1K+ Views

In MATLAB programming, we can use various types of built-in functions to generate different types of random numbers. Random numbers are nothing but numbers selected randomly from a set of numbers. MATLAB provides the following four major functions to generate different types of random numbers depending on our requirements: ... Read More

Write Data to Text Files in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 13:17:33

586 Views

In MATLAB, there is a built-in function “fprintf()” that is used to write data to a text file. The best part of this function is that it writes formatted data to a text file exactly in the same way as specified. Syntax fprintf(fileID, FormateSpecifier, Variables); Format Specifiers in MATLAB ... Read More

Trapezoidal Numerical Integration without using trapz in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 13:14:55

706 Views

Introduction to Trapezoidal Numerical Integration Trapezoidal numerical integration is a method used for finding the approximate value of a definite integral. It is also called as the trapezoidal rule. In the case of trapezoidal numerical integration method, we use trapezoids to calculate the area under a curve. In ... Read More

Read Words in a File in Reverse Order in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 13:04:05

172 Views

Consider a text file containing a sentence “I Study MATLAB from Tutorials Point.” Now, we want to read these words of the text file in the reverse order, the result will be “Point Tutorials from MATLAB Study I.”. In this article, we will explore the implementation of MATLAB program to ... Read More

Intensity Transformation Operations on Images in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 13:01:33

2K+ Views

Introduction to Intensity Transformation in MATLAB In MATLAB, the intensity transformation operation on images is one of the most fundamental image processing technique. It is an image processing operation in which the results depend on the intensity of an image. In MATLAB, the intensity transformation operations on images are ... Read More

How to Set Axis Limits in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 12:59:21

4K+ Views

MATLAB provides various built-in functions, such as xlim(), ylim(), and axis() that help us to adjust axis limits as per our requirements. In this tutorial, we will learn about adjusting axis limits of a plot in MATLAB. Functions to Set Axis Limits In MATLAB, there are three main functions widely ... Read More

How to Set Axis Tick values in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 18-Jul-2023 12:56:06

669 Views

To apply custom axis tick values, MATLAB has two built-in functions “xticks()” and “yticks()”. Here, the “xticks()” function is used for customizing the tick values of X-axis in a MATLAB plot, while the “yticks()” function is used for setting custom tick values to Y-axis. Syntax xticks([custom_tick_values]); yticks([custom_tick_values]); The ... Read More

How to Create Logarithmic Scales in MATLAB

Manish Kumar Saini

Manish Kumar Saini

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

1K+ Views

MATLAB has three built-in functions "semilogx", "semilogy", and "loglog" to covert the linear axis scales to logarithmic scales in a plot. Here, the “semilogx()” function is used to change the X-axis scale to a logarithmic scale. The “semilogy()” function is used to change the Y-axis scale to a logarithmic ... Read More

Advertisements