This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from matplotlib import pyplot as plt | |
#rows, columns | |
layout = (2, 1) | |
fig = plt.figure(figsize=(12, 12), dpi=80) | |
fig.canvas.set_window_title(title='matplotlib object oriented demo') | |
positions = fig.add_subplot(*layout, 1, ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from matplotlib import pyplot as plt | |
def cross_matrix(axis): | |
""" | |
Returns the skew symetric matrix given a vector omega | |
:param omega: 3D axis of rotation | |
:return: skew symmetric matrix for axis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by duane on 10/2/20. | |
// | |
#include <torch/torch.h> | |
int main(int arg, char *argv[]){ | |
auto x = torch::randn(3, torch::requires_grad()); | |
auto z = torch::randn(3, torch::requires_grad()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.5) | |
project(ros2_cpp_pkg) | |
# Default to C99 | |
if(NOT CMAKE_C_STANDARD) | |
set(CMAKE_C_STANDARD 99) | |
endif() | |
# Default to C++14 | |
if(NOT CMAKE_CXX_STANDARD) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from vpython import sphere, vector, rate, color, arrow, canvas, cross, triangle, vertex | |
from math import sqrt | |
G = 6.67e-11 # N kg^-2 m^2 | |
au = 1.495978707e11 | |
day = 60 * 60 * 24 | |
year = day * 365.25 | |
earth_mass = 5.972e24 # kg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glfw | |
from OpenGL.GL import * | |
from OpenGL.GL.shaders import compileProgram, compileShader | |
import numpy as np | |
import pyrr | |
def init_window(width, height, title="My OpenGL window"): | |
# initializing glfw library | |
if not glfw.init(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torch import tensor | |
from torch.distributions.multivariate_normal import MultivariateNormal | |
import matplotlib.pyplot as plt | |
from matplotlib.patches import Ellipse | |
import matplotlib.patches as mpatches | |
from math import acos, degrees | |
from matplotlib.pyplot import cm | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torch.distributions.normal import Normal | |
from torch.distributions.multivariate_normal import MultivariateNormal | |
""" | |
Example of computing c batched Normal and Multivariate distributions from data | |
and sampling batches from them | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torch.distributions.normal import Normal | |
import matplotlib.pyplot as plt | |
""" | |
EM algo demo, in pytorch | |
""" | |
n = 40 # must be even number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torch.distributions.normal import Normal | |
import matplotlib.pyplot as plt | |
""" | |
Using Bayes to estimate the relative probability of 2 Hypotheses given the value of a single data point | |
Both hypothesis given equal prior probability of being correct | |
""" |