Skip to content

Instantly share code, notes, and snippets.

View coralmw's full-sized avatar

Coral coralmw

View GitHub Profile
@coralmw
coralmw / modelsim_installation.md
Last active August 4, 2023 22:09 — forked from Razer6/modelsim_installation.md
Installing ModelSim on Ubuntu

ModelSim Installation issues

Installation requirements

The free version of Modelsim is a 32-bit binary and therefore requires certain 32-bit libraries in order to work correctly. For Ubunutu, install the following packages

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32ncurses6 libxft2 libxft2:i386 libxext6 libxext6:i386 
import pylab
from Tkinter import *
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
from matplotlib.figure import Figure
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
import numpy as np
class ParticleMotion:
def __init__(self, master):