Skip to content
View hi-mel's full-sized avatar
🤝
🤝

Highlights

  • Pro
Block or Report

Block or report hi-mel

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 Loading

  1. Non-linear trajectory optimization o... Non-linear trajectory optimization of a cart-pole system written in Julia
    1
    #= 
    2
    Example Source: http://www.matthewpeterkelly.com/tutorials/trajectoryOptimization/cartPoleCollocation.svg
    3
    Learning trajectory optimization with a simple cartpole system
    4
    =#
    5
    
                  
  2. Simple Julia implementation of Leven... Simple Julia implementation of Levenberg-Marquardt with a simple single chain 2D robot inverse kinematics example
    1
    using ForwardDiff
    2
    using LinearAlgebra
    3
    using StaticArrays
    4
    using BenchmarkTools
    5