Manish Kumar Saini has Published 1143 Articles

Class Constructor Methods in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 10-Oct-2023 15:36:41

367 Views

In MATLAB, there are class constructor methods which are used to create an instance of a class. Class constructor methods are basically special functions within a class that are used to create and initialize the objects of the class, these class constructor methods are called automatically when we create a ... Read More

Linear Filtering without using Imfilter Function in MATLAB

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:15:19

385 Views

In MATLAB, "linear filtering" is a technique used to apply a linear filter to a digital image. The fundamental principle behind the working of linear filtering is convolution. This article is meant for explaining the concept of linear filtering and how to perform linear filtering without using the "imfilter" function ... Read More

How to reverse a string in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:14:27

415 Views

MATLAB provides various built-in functions to reverse a string of text. In this tutorial, I am going to explain all the commonly used methods to reverse a string in MATLAB. Reverse a String Using "reverse" Function in MATLAB There is a built-in function "reverse" in MATLAB that we can use ... Read More

How to reverse a number in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:11:42

806 Views

In MATLAB, there are various methods and functions for reversing a given number. In this tutorial, I will explain all these methods one-by-one with the help of examples. Reverse a Number Using "fliplr" Function in MATLAB The "fliplr" is a built-in function in MATLAB that we can use to reverse ... Read More

How to remove spaces in a string in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 09-Oct-2023 11:09:54

634 Views

MATLAB provides various methods and functions to remove spaces in a string. In this tutorial, we will cover the commonly used methods for removing extra spaces in a string. So, let’s start. Remove White Space in a String Using "isspace" Function In MATLAB, the "isspace" function is a built-in function ... Read More

How to Import Data from a CSV File with Numeric Values and Texts into MATLAB Workspace?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Oct-2023 14:14:54

531 Views

CSV or Comma Separated Values is a file format that can store numeric and text values. The most important characteristic of a CSV file is that it allows to exchange the data among a variety of sources. MATLAB is a powerful tool that provides a large number of built-in functions ... Read More

How To Plot a Function of Two Variables in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Oct-2023 14:06:10

826 Views

MATLAB provides various built-in functions to plot a function of two variables with the help of different types of plots like mesh, surface, scatter plots, etc. In this tutorial, I am going to explain the process of plotting a function of two variables in MATLAB. Plot a Function of Two ... Read More

How to remove decimal in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Oct-2023 11:25:40

1K+ Views

In mathematics, there are several types of numeric values such as integers (having no fractional part), floating point numbers (having fractional parts separated by a decimal), and more. In some data analysis and other computational applications, we are given floating point numbers that contain a decimal part, i.e., digits after ... Read More

How to Read Text File Backwards Using MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Oct-2023 11:22:44

258 Views

In MATLAB, reading a text file backwards involves reversing the order of the lines written in the file. We can use MATLAB to reverse the order and read the text file backwards. For this, MATLAB provides various methods using different functions and algorithms. In this tutorial, I will explain the ... Read More

How to Read an Image File in MATLAB?

Manish Kumar Saini

Manish Kumar Saini

Updated on 06-Oct-2023 11:20:48

301 Views

Reading an image file is the first step in any digital image processing task. In MATLAB, reading an image file means the process of inputting or loading the digital image into the MATLAB workspace and store it in a variable. Let us now understand the process of reading an image ... Read More

Advertisements