Posts by Ranjeet V

Author Biographical Info: Not available

isnormal() function in C++

By Ranjeet V

In this tutorial, we are going to talk about the working of the isnormal() function in C++. As it is very much evident from its name, this function is used to find out whether a nu.... Read More

numpy.isnat() method in python with examples

By Ranjeet V

In this Python tutorial, we are going to learn about numpy.isnat() method. This method helps in figuring out whether the value returned by numpy.datetime64() and numpy.timedelta64(.... Read More

Label encoding of datasets in Python

By Ranjeet V

Hey guys, in this tutorial we will learn about label encoding of datasets in Python. Normally in machine learning algorithms, when we import a dataset, it consists of many categori.... Read More

Math expm1() method in Python math library

By Ranjeet V

There are many mathematical methods in the Python math library. The method that we will be talking about today is the expm1() method. This method is used to find the value of exp(x.... Read More

Python bit functions on int with examples

By Ranjeet V

In this tutorial, we are going to learn about some bit functions on int in Python i. e. bit_length(), to_bytes() and from_bytes(). Let’s discuss these functions one by one. i.... Read More

nth Catalan Number in Java

By Ranjeet V

Catalan numbers are used in many mathematical problems. These are a sequence of numbers. The first few Catalan numbers can be given as: 1, 1, 2, 5, 14, 42, 132, 429, 1430, and so o.... Read More

Matrix multiplication in Python using Pytorch

By Ranjeet V

Hey guys, in this post we will see the matrix multiplication in Python using Pytorch. A general way to multiply matrices is by using nested loops. We can also use NumPy arrays for .... Read More

Blank Final variable in Java with examples

By Ranjeet V

When a variable is declared as final, it can be assigned a value only once and cannot be updated or changed. A blank final variable in Java is a final variable which is not assigne.... Read More

Related Posts