Skip to content
View goromal's full-sized avatar

Organizations

@BYU-AUVSI
Block or Report

Block or report goromal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. anixpkgs anixpkgs Public

    A collection of personal (or otherwise personally useful) repositories packaged as Nix derivations.

    Nix

  2. manif-geom-cpp manif-geom-cpp Public

    Templated, header-only library implementing the SO(3) and SE(3) manifolds.

    C++ 3 3

  3. ceres-factors ceres-factors Public

    Custom parameterizations and cost functions for the Ceres Solver.

    C++ 5 4

  4. signals-cpp signals-cpp Public

    Header-only templated C++ library implementing rigid-body dynamics, derivatives, integrals, and interpolation.

    C++

  5. Simple traffic simulator on a circul... Simple traffic simulator on a circular road. Cars have two control objectives: maintain a consistent distance between cars and maintain a consistent car speed.
    1
    # Simple traffic simulator on a circular road. Cars have two
    2
    # control objectives:
    3
    #   - Maintain a consistent distance between cars.
    4
    #   - Maintain a consistent car speed.
    5
    import argparse
  6. Deduce rotation conventions used in ... Deduce rotation conventions used in a software library (Python)
    1
    import numpy as np
    2
    from typing import Callable, Tuple
    3
    import functools
    4
    
                  
    5
    class EulerAnglesOrder: