Monte Carlo simulation in Python with few lines of code

By Nihar Kalsekar

In this tutorial, we are going to learn Monte Carlo simulation. It is used to get the estimated probability of different outcomes. This is usually done in processes in which there .... Read More

Box Blur using Python PIL library

By Nihar Kalsekar

In this tutorial, we will be seeing the implementation of  BoxBlur() using the Python Imaging Library(PIL). The development of this Library was stopped in 2011. However many progr.... Read More

Get Position of a GameObject in Unity 3D with C# Script

By Faruque Ahamed Mollick

During the gameplay, it often may be needed to trace the position of an object in Unity 3D programmatically using C# script. For example, in a car racing game, you need to continuo.... Read More

Create a toolbar and add buttons to it in SwiftUI

By Samim

In this tutorial, we will see how to create a toolbar and add buttons to it in SwiftUI. A toolbar is like a row of buttons at the top or bottom of our computer screen or app. It ma.... Read More

How to use roots (√, ∛) in LaTeX?

By Parvez Akhtar Pasha

In this tutorial, you will learn how to use square root, cube root, and nth root in LaTeX. Follow the given table to get all the required commands. Name Command Output Square root .... Read More

Map visualization with Folium in Python

By Pranit Sawant

In this tutorial, we will learn how to create visualizations using Folium in Python. We will also learn about how to customize the map and add markup and pop-ups to the map to make.... Read More

Club (♣), Diamond (♦), Heart (♥), and Spade (♠) in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to get all the card symbols (♣, ♦, ♥, ♠) in LaTeX. You can use the default commands or other packages to get different styles of these.... Read More

Add vertical space forcefully at the start of a page in LaTeX

By Parvez Akhtar Pasha

The \vspace{<length>} command is used to insert blank spaces vertically in LaTeX. But in some cases, this command doesn’t work. In that case, you have to give space for.... Read More

Related Posts