How to use std::normal_distribution in C++

By Vidhi Jain

In this tutorial, will learn about the normal distribution class in C++. Header file used: <random.h> We use it to generate random numbers according to the Normal random numb.... Read More

Convert Numpy Array into Keras Tensor

By Ripan Purkait

In this blog, we will explore the process of converting a Numpy array to a Keras tensor. Converting Numpy arrays to TensorFlow tensors is essential for seamlessly integrating Numpy.... Read More

Put an image in NavigationView in SwiftUI

By shagrafnasheet

In this tutorial, we’ll learn how to put an image in the Navigation view of SwiftUI. We can give an image to the navigation view in SwiftUI using navigationBarItems. Navigati.... Read More

Change the color of back button on NavigationView

By shagrafnasheet

In this tutorial, we’ll learn how to change the color of the back button on NavigationView in SwiftUI. It’s super easy all we have to do is use one SwiftUI modifier, th.... Read More

Optical Character recognition using Deep Learning (CNN)

By Ripan Purkait

Our OCR (Optical Character Recognition) project aims to develop a robust and efficient system to detect characters and digits from an image. We are going to use Keras deep learning.... Read More

Check if a number is multiple of 9 using bitwise operators in C++

By Vivek Kumar Jaiswal

Hello everyone, In this tutorial, we will discuss how to check if a number is multiple of 9 using the bitwise operators in C++. There are many other ways to check for the same as w.... Read More

How to Parse XML file in Java

By Prathamesh Ballal

In this tutorial, we are going to learn about the Parsing XML file in Java. We can Parse XML file using Java DOM parser and Java SAX parser. We will learn about the DOM parser. Jav.... Read More

Address Calculation Sort in Python using hashing

By Rashi Singh

In this tutorial, we will learn about Address Calculation Sort in Python which is done using ‘hashing’. Address Calculation Sort In Address Calculation Sorting algorith.... Read More

Related Posts