Articles on Trending Technologies

Technical articles with clear explanations and examples

Intensity Transformation Operations on Images in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 3K+ 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 performed to correct, enhance, or manipulate the intensity of image pixels. We have various built-in MATLAB functions to perform intensity transformation operations on images. In this article, we will discuss some commonly used intensity transformation operations and will see how they can be implemented using MATLAB programming. Intensity ...

Read More

How to Set Axis Limits in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 5K+ 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 used for adjusting axis limits of a plot. These functions are as follows: “xlim()” Function - The “xlim()” function is used to adjust X-axis limit of a plot in MATLAB. “ylim()” Function - The “ylim()” ...

Read More

How to Set Axis Tick values in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 832 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 following MATLAB program demonstrate the use of “xticks()” and “yticks()” functions to create custom tick values for X-axis and Y-axis. Example % MATLAB program to specify custom axis tick values % Create a sample vector of data x = linspace(1, 5, 5); y = x.^2; % Plot the x ...

Read More

Wiremock VS Mockito

Way2Class
Way2Class
Updated on 18-Jul-2023 2K+ Views

Mockito is built for testing the unit, whereas Wiremock is built specifically for the integration testing. Mockito aids itself as “a mocking framework that tastes really great” whereas wiremock stimulates itself as “a simulator for HTTP-based APIs”. Both wiremock and mockito are the technologies used for testing that is widely used for unit and integration testing in natural world applications. Developers have to understand these two important terms and how they differ from each other to use them in an effective way. Therefore, we will cover the main difference between these two extensively used tools in this article. What ...

Read More

How to Create Logarithmic Scales in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 2K+ 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 scale. The “loglog()” functions changes both X-axis and Y-axis scales to logarithmic scales. Syntax semilogx(x, y); semilogy(x, y); loglog(x, y); The following MATLAB program demonstrates the use of “semilogx()”, “semilogy()”, and “loglog()” functions to change the axis scales to logarithmic scales in MATLAB. Example % MATLAB program to ...

Read More

How to Create Custom Axis Labels in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 1K+ 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: "xlabel()" Function - The “xlabel()” function is used to apply label for X-axis in MATLAB. "ylabel()" Function - The “ylabel()” function is used to apply label for Y-axis in MATLAB. ...

Read More

Difference between Hierarchical and Flat routing protocol

Pranavnath
Pranavnath
Updated on 18-Jul-2023 1K+ Views

Routing protocols are utilized in computer systems to decide the most excellent way for network packets to travel from their source to their goal. There are two primary sorts of routing protocols: Hierarchical and Flat. Hierarchical routing protocols utilize a hierarchical topology, whereas flat routing protocols utilize a single-level topology. The choice between a hierarchical and flat protocol depends on the estimate and complexity of the network in address. In this article, we are going investigate the contrasts between hierarchical and flat routing protocols, counting their versatility, complexity, fault tolerance, and examples of each sort. By the conclusion of this ...

Read More

Difference between FDM and OFDM

Pranavnath
Pranavnath
Updated on 18-Jul-2023 2K+ Views

FDM and OFDM are two commonly utilized strategies for transmitting numerous signals over a single communication channel. Whereas both procedures accomplish the same objective, they contrast in the way they separate the accessible transfer speed and designate it to the signals being transmitted. In this article, we are going investigate the contrasts between FDM and OFDM in more detail and look at their utilization cases in different communication frameworks. We'll moreover compare the preferences and drawbacks of each strategy, counting their proficiency, complexity, and vulnerability to obstructions. FDM FDM stands for Frequency Division Multiplexing. Each sub-band is at that point ...

Read More

Difference between Express VPN and IPVanish VPN

Pranavnath
Pranavnath
Updated on 18-Jul-2023 486 Views

In the world of virtual private networks (VPNs), Express VPN and IP Vanish VPN are two of the foremost well-known and well-regarded administrations. Both offer a run of highlights outlined to secure online security and security, but they contrast in terms of their server systems, pricing, and ease of utilization. In this article, we are going to compare and differentiate Express VPN and IP Vanish VPN to assist you choose which one is right for you. Whether you're seeking out for a VPN to bypass geo-restrictions, secure your security, or make strides in your online security, we'll give the data ...

Read More

How to Add Grid Lines in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 18-Jul-2023 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 the visibility of gridlines in a plot. The “grid” option with value “on” displays the major grid lines in the plot, with value “off” hides the gridlines in plot, and with value “minor” it can display minor gridlines in the plot. It is important to note that when the “grid” ...

Read More
Showing 35651–35660 of 61,297 articles
Advertisements