- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHPPhysics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Manish Kumar Saini has Published 1143 Articles
Manish Kumar Saini
703 Views
In MATLAB, we can perform various operations on matrices. One such operation is selecting random rows from a matrix. MATLAB provides several different methods of selecting random rows from a matrix. In this tutorial, I will explain different methods of selecting rows from a matrix randomly using MATLAB. Select Random ... Read More
Manish Kumar Saini
214 Views
Rounding toward negative infinity is a method of rounding a number "N" down to the nearest integer less than or equal to the number "N". This method is also called "flooring". In simple words, rounding a number toward negative infinity is a method of finding the largest integer number ... Read More
Manish Kumar Saini
64K+ Views
In order to differentiate the Conductor, Semiconductor, and Insulator, first we have to understand their extent of forbidden band i.e. separation between their conduction and valance band. The main difference between the conductor, semiconductor and insulator is in their conductivity.ConductorA conductor is a type of material that allows the electric ... Read More
Manish Kumar Saini
34K+ Views
Insulated Gate Bipolar Transistor (IGBT) and Metal Oxide Semiconductor Field Effect Transistor (MOSFET) are two types of transistors that are the basic building blocks of modern electronic circuits. Both IGBT and MOSFET are voltage-controlled devices. However, they are different in various aspects. Go through this article to get a basic ... Read More
Manish Kumar Saini
746 Views
MATLAB is a digital tool that is widely used in image processing, such as image transformation, noise removal from an image, detecting edges, and more. In this tutorial, I will explain how you can remove salt and pepper noise from a digital image using MATLAB. In a digital image, ... Read More
Manish Kumar Saini
540 Views
A histogram is a graphical representation of data that shows the frequency distribution of data points. MATLAB provides a built−in function "histogram" to plot the histogram of a data set. What is a Histogram in MATLAB? In MATLAB, the histogram is a graphical method of representing the frequency distribution of ... Read More
Manish Kumar Saini
441 Views
The position of a number in an array or a matrix is also known as index of that number within the array or matrix. In MATLAB, arrays are one−indexed that means the index of the first element of the array will be "1", the index of the second element will ... Read More
Manish Kumar Saini
326 Views
MATLAB is a powerful tool to perform operations and calculations related to arrays and matrices. In MATLAB, an array or a matrix is a type of data structure used to store numeric data. Each value stored in an array or matrix is termed as an element. The position of an ... Read More
Manish Kumar Saini
1K+ Views
In MATLAB, an array is a data structure used to store numeric data and information. The values stored in an array is called its element. The position of an element within an array is known as index of the element. The index of element is used to access the element ... Read More
Manish Kumar Saini
349 Views
MATLAB is an efficient tool to perform operations on arrays and matrices. In MATLAB, there are several built-in functions available for cell indexing and conversion that can be used to extract numbers from a cell array. Before proceeding further, let us first get an overview of cell array in MATLAB. ... Read More