Articles on Trending Technologies

Technical articles with clear explanations and examples

What are different types of denoising filters in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 470 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 processing. Therefore, it is required to remove or reduce the noise in a signal or image. This can be done with the help of a denoising filter. In this tutorial, we will explore several different types of denoising filter in MATLAB and will implement them using MATLAB programming. Types of ...

Read More

How To Create Video from Sequence of Images Using MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 260 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 process of creating a video from a sequence of images is explained below − Step (1) − Firstly, collect all the images in a folder that we want to use in the video. Step (2) − Read all the images using the 'imread' function and store them in a ...

Read More

How to Create a Textarea Component in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 265 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, Labels, Hypertext, and more. In this tutorial, we will explore how to create a TextArea Component in MATLAB app. TextArea Component in MATLAB In MATLAB, the TextArea is a GUI component allows application users to input a string of text. MATLAB provides a built-in function ‘uitextarea’ to create a TextArea ...

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 219 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 all possible row combinations in MATLAB. For this, we can use MATLAB's built-in function 'randperm'. The 'randperm' function will randomly select a row index and create a new matrix. Algorithm The step-by-step process to create a new matrix from all possible row combinations is described below − Step (1) ...

Read More

How to Create a Hyperlink Component in MATLAB?

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 224 Views

In MATLAB, we can use the MATLAB's built-in GUI environment 'App Designer' to create a hyperlink component. The App Designer Environment of MATLAB allows to create several types of GUI components like hyperlink, buttons, sliders, text fields, etc. To create a hyperlink component in MATLAB, we can use a built-in option 'uihyperlink'. This function creates a GUI hyperlink component in MATLAB. This function allows users to navigate across web resources with a single click. The 'uihyperlink' function creates a hyperlink object in a MATLAB app. The 'uihyperlink' function can have the following syntaxes. (1). Create Hyperlink Object with Default Properties ...

Read More

The Power of Big Data: How It Is Transforming Industries

Devang Delvadiya
Devang Delvadiya
Updated on 06-Sep-2023 295 Views

Introduction In the latest digital age, the accumulation and analysis of statistics have become crucial for businesses across numerous industries. Big records refer to large amounts of established and unstructured records that may be harnessed to extract precious insights. Massive facts revolutionize how corporations function, from healthcare to finance, marketing to transportation. In this article, we can explore the transformative strength of huge statistics across distinct sectors and apprehend its effect on choice−making, innovation, and purchaser experience. Healthcare Big records are revolutionizing the healthcare enterprise, allowing better patient care and medical studies. Electronic health facts (EHRs) seize patient records, allowing ...

Read More

AI and Data Science: Unleashing the Potential of Big Data

Devang Delvadiya
Devang Delvadiya
Updated on 06-Sep-2023 281 Views

Big Data Big data alludes to the enormous volume, variety, and velocity of data created from different sources, including web−based entertainment, sensors, and cell phones, and that's just the beginning. The expression "big" includes the sheer volume of data and addresses the data's intricacy and variety. Big data is portrayed by its three V's − Volume Big data includes a huge amount of data that outperforms the handling abilities of conventional data set systems. The scale goes from terabytes (~ all of your PC extra room) to exabytes (~ all of your extra room X a million) and then some. ...

Read More

Difference between Reluctance Motor and Induction Motor

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 5K+ Views

Electric motors are present in the industry to help us to drive a lot of numbers of mechanical loads in the industry. They have a moving and stationary part to interact with the magnetic field and current to transform electric energy into mechanical energy. They have dominated the industry from automobiles to robotics and household to industrial applications. In this tutorial, we will explore the important differences between a reluctance motor and an induction motor. The most fundamental difference between a reluctance motor and an induction motor is that a reluctance motor operates on the principle of magnetic reluctance while ...

Read More

Difference between inv() and pinv() functions in MATLAB

Manish Kumar Saini
Manish Kumar Saini
Updated on 06-Sep-2023 774 Views

In this tutorial, we will discuss two important functions namely, "inv()" and "pinv()", used for matrix inversion in MATLAB. Since, the fundamental purpose of both the functions is the same, i.e. matrix inversion, but they are different from each other in many aspects. Hence, we will learn the important differences between 'inv()' and 'pinv()' functions. What is 'inv()' Function? In MATLAB, the 'inv()' function is a built-in function used to calculate the inverse of a non-singular square matrix. Therefore, if 'M' is a non-singular square matrix, then the function 'inv(M)' will return a new matrix 'B' for which 'I = ...

Read More

How to check whether a checkbox is checked in JavaScript?

Shubham Vora
Shubham Vora
Updated on 06-Sep-2023 54K+ Views

In this tutorial, we will learn to check whether a checkbox is checked in JavaScript. The checkbox is the input type in the HTML, which works as the selection box. The radio buttons which belong to the same group allow users to select only one value. Still, the checkbox which belongs to the same group allows users to select multiple values. Also, you have many uses of checkboxes in your mind yourself. The HTML can add a checkbox to the webpage, but to add the behaviour to the checkbox, we must use JavaScript. Programmers can add different behaviours to the ...

Read More
Showing 16861–16870 of 61,248 articles
Advertisements