An Introduction to Trajectory Optimization: How to Do Your Own Direct Collocation
Abstract.
Keywords
MSC codes
1. Introduction.
1.1. Overview.
1.2. Notation.
1.3. A Simple Example.


1.4. The Trajectory Optimization Problem.
1.5. Direct Collocation Method.
1.6. Nonlinear Programming.
2. Block-Move Example (Minimum-Force Objective).
2.1. Block-Move Example: Problem Statement.
2.2. Block-Move Example: Analytic Solution.
2.3. Block-Move Example: Trapezoidal Collocation.
2.4. Initialization.
2.5. Block-Move Example: Nonlinear Program.
2.6. Block-Move Example: Interpolation.
3. Trapezoidal Collocation Method.
3.1. Trapezoidal Collocation: Integrals.
3.2. Trapezoidal Collocation: System Dynamics.
3.3. Trapezoidal Collocation: Constraints.
3.4. Trapezoidal Collocation: Interpolation.


4. Hermite–Simpson Collocation Method.

4.1. Hermite–Simpson Collocation: Integrals.
4.2. Hermite–Simpson Collocation: System Dynamics.
4.3. Hermite–Simpson Collocation: Constraints.
4.4. Hermite–Simpson Collocation: Interpolation.

5. Practical Considerations.
5.1. Initialization.
5.2. Mesh Refinement.

5.3. Error Analysis.
5.4. Debugging Your Code.
5.5. Consistent Functions.
6. Cart-Pole Swing-Up Example.
6.1. Cart-Pole Example: System Dynamics.

6.2. Cart-Pole Example: Objective Function.
6.3. Cart-Pole Example: Boundary Constraints.
6.4. Cart-Pole Example: State and Control Bounds.
6.5. Cart-Pole Example: Trapezoidal Collocation.
6.6. Cart-Pole Example: Hermite–Simpson Collocation.
6.7. Cart-Pole Example: Initialization.
6.8. Cart-Pole Example: Results.



7. Five-Link Biped Example.
7.1. Five-Link Biped: Model.

7.2. Five-Link Biped: System Dynamics.
7.3. Five-Link Biped: Objective Function.
7.4. Five-Link Biped: Constraints.
7.5. Five-Link Biped: Initialization.
7.6. Five-Link Biped: Results.



8. Block-Move Example (Minimum-Work).
8.1. Block-Move Example: Problem Statement.
8.2. Block-Move Example: Analytic Solution.
8.3. Block-Move Example: Discontinuities.
8.4. Block-Move Example: Initialization.
8.5. Block-Move Example: Slack Variables.
8.6. Block-Move Example: Smoothing.

8.7. Block-Move Example: Results.

9. Background.
9.1. Trajectory Optimization vs. Parameter Optimization.
9.2. Open-Loop vs. Closed-Loop Solutions.

9.3. Continuous-Time and Discrete-Time Systems.
9.4. Indirect Methods.
9.5. Direct Single Shooting.
9.6. Direct Multiple Shooting.
9.7. Orthogonal Collocation.
9.8. Differential Dynamic Programming.
9.9. Multiphase Methods.
9.10 Through-Contact Methods.
9.11 Which Method Is Best?
9.12. Trajectory Optimization Software.
Name | License | Interface | Method |
---|---|---|---|
GPOPS-II [45] | commercial | MATLAB | direct orthogonal collocation |
PSOPT [2] | open source | \(\textrm{C++}\) | direct collocation |
SOS [7] | commercial | GUI | direct collocation (methods from [6]) |
DIRCOL [63] | free license | C | direct collocation |
DIDO [52] | commercial | MATLAB | indirect orthogonal (pseudospectral) collocation |
10. Summary.
Appendix A. Overview of Electronic Supplementary Material.
A.1. Trajectory Optimization Code.
A.2. Example Problems.
Appendix B. Analytic Solution to Block-Move Example.
B.1. Full Solution.
B.2. Short Solution.
Appendix C. Derivation of Simpson Quadrature.
Appendix D. Orthogonal Polynomials.
D.1. Computing Polynomial Roots.

D.2. Barycentric Lagrange Interpolation.
D.3. Differentiation Matrix.
D.4. Quadrature.
Appendix E. Parameters for Example Problems.
E.1. Cart-Pole Swing-Up Parameters.
Symbol | Value | Name |
---|---|---|
\(m_1\) | \(1.0\) kg | mass of cart |
\(m_2\) | \(0.3\) kg | mass of pole |
\(\ell\) | \(0.5\) m | pole length |
\(g\) | \(9.81\) m/s\(^2\) | gravity acceleration |
\(u_{\text{max}}\) | \(20\) N | maximum actuator force |
\(d_{\text{max}}\) | \(2.0\) m | extent of the rail that cart travels on |
\(d\) | \(1.0\) m | distance traveled during swing-up |
\(T\) | \(2.0\) s | duration of swing-up |
E.2. Five-Link Biped Parameters.
Symbol | Value | Name |
---|---|---|
\(m_1, m_5\) | \(3.2\) kg | mass of tibia (lower leg) |
\(m_2, m_4\) | \(6.8\) kg | mass of femur (upper leg) |
\(m_3\) | \(20\) kg | mass of torso |
\(I_1, I_5\) | \(0.93 \text{ kg-m}^2\) | rotational inertia of tibia, about its center of mass |
\(I_2, I_4\) | \(1.08 \text{ kg-m}^2\) | rotational inertia of femur, about its center of mass |
\(I_3\) | \(2.22 \text{ kg-m}^2\) | rotational inertia of torso, about its center of mass |
\(\ell _1, \ell _5\) | \(0.4\) m | length of tibia |
\(\ell _2, \ell _4\) | \(0.4\) m | length of femur |
\(\ell _3\) | \(0.625\) m | length of torso |
\(d_1, d_5\) | \(0.128\) m | distance from tibia center of mass to knee |
\(d_2, d_4\) | \(0.163\) m | distance from femur center of mass to hip |
\(d_3\) | \(0.2\) m | distance from torso center of mass to hip |
Appendix F. Biped Dynamics.
F.1. Kinematics.

F.2. Single-Stance Dynamics.

F.3. Heel-Strike Dynamics.

F.4. Gradients.
Footnotes
Supplementary Material
PLEASE NOTE: These supplementary files have not been peer-reviewed.
Index of Supplementary Materials
Title of paper: An introduction to trajectory optimization: how to do your own direct collocation
Author: Matthew P. Kelly
File: Trajectory_Optimization_Code.zip
Type: zip file, contains Matlab code
Contents: Trajectory optimization software, which implements the direct collocation methods from the paper.
Justification: This code is well-documented and a continuation of the tutorial, demonstrating how these algorithms can be implemented in Matlab.
File: Examples.zip
Type: zip file, contains Matlab code
Contents: Source code for all examples presented in the paper.
Justification: This code is well-documented and a continuation of the tutorial, demonstrating how the examples from the paper can be solved in Matlab. Allows the reader to experiment with optimization parameters.
File: Appendix_SplineDerivation.zip
Type: zip file, contains Matlab code
Contents: Source code for symbolic math calculations in the appendix.
Justification: Gives the reader ability to look at how the derivations were implemented in Matlab.
File: README.txt
Type: text file
Contents: Detailed list of all files contained within the zip files listed above.
Justification: A continuation of this index, makes it easier to see what is here.
References.
Information & Authors
Information
Published In

Copyright
History
Keywords
MSC codes
Authors
Funding Information
Metrics & Citations
Metrics
Citations
If you have the appropriate software installed, you can download article citation data to the citation manager of your choice. Simply select your manager software from the list below and click Download.
Cited By
- A Case Study Comparing Both Stochastic and Worst-Case Robust Control Co-Design Under Different Control StructuresJournal of Dynamic Systems, Measurement, and Control, Vol. 147, No. 5 | 11 April 2025
- Sparse Polynomial Optimization with Unbounded SetsSIAM Journal on Optimization, Vol. 35, No. 2 | 2 April 2025
- Trajectory optimization for temporally multi-staged batch counterflow reverse osmosisDesalination, Vol. 604 | 1 Jun 2025
- Continuous-Time Line-of-Sight Constrained Trajectory Planning for 6-Degree of Freedom SystemsIEEE Robotics and Automation Letters, Vol. 10, No. 5 | 1 May 2025
- Attention-Based Multi-Objective Control for Morphing AircraftBiomimetics, Vol. 10, No. 5 | 30 April 2025
- Transformer-Based Tight Constraint Prediction for Efficient Powered Descent GuidanceJournal of Guidance, Control, and Dynamics, Vol. 48, No. 5 | 1 May 2025
- Preferred Jacobian Differentiation and Direct Collocation Methods for an Efficient and Accurate Walker Gait OptimizationInternational Journal of Control, Automation and Systems, Vol. 23, No. 5 | 14 May 2025
- Beyond proxies: A direct time-optimal approach to robot cell layout optimizationCIRP Annals, Vol. 12 | 1 May 2025
- Universal Angles-Only Cislunar Initial Orbit Determination Using Sparse Grid CollocationThe Journal of the Astronautical Sciences, Vol. 72, No. 2 | 12 April 2025
- A novel trajectories optimizing method for dynamic soaring based on deep reinforcement learningDefence Technology, Vol. 46 | 1 Apr 2025
- Approximations and bounds for optimal controls via finite Fourier seriesPhysica Scripta, Vol. 100, No. 4 | 3 March 2025
- State-Space Basins for Monopedal Jumping With Stable LandingJournal of Mechanisms and Robotics, Vol. 17, No. 4 | 22 November 2024
- Short Landing Control Techniques Using Optimization of Flare Time Constant for High-Speed Fixed-Wing UAVAerospace, Vol. 12, No. 4 | 8 April 2025
- MocoExtendProblem: Interface Between OpenSim and MATLAB for Rapidly Developing Direct Collocation Goals in MocoJournal of Open Source Software, Vol. 10, No. 108 | 1 Apr 2025
- Rapid Nonlinear Convex Guidance Using a Monomial MethodJournal of Guidance, Control, and Dynamics, Vol. 48, No. 4 | 1 Apr 2025
- Hopping Control of a Monopod Robot: Reinforcement Learning vs Raibert Heuristic2025 9th International Conference on Robotics, Control and Automation (ICRCA) | 7 Mar 2025
- Primal–dual adaptive dynamic programming for finite-horizon optimal control of nonlinear systems with isoperimetric constraintsAutomatica, Vol. 173 | 1 Mar 2025
- Solid State Transformer Controls for Mitigation of E3a High-Altitude Electromagnetic Pulse InsultsEnergies, Vol. 18, No. 5 | 21 February 2025
- Integrating Trajectory Optimization in Quality-Diversity for Kinodynamic Motion Planning2025 11th International Conference on Automation, Robotics, and Applications (ICARA) | 12 Feb 2025
- HTEC foot: A novel foot structure for humanoid robots combining static stability and dynamic adaptabilityDefence Technology, Vol. 44 | 1 Feb 2025
- A new nonsmooth optimal control framework for wind turbine power systemsJournal of the Franklin Institute, Vol. 362, No. 3 | 1 Feb 2025
- Interaction-aware control for robotic vegetation override in off-road environmentsJournal of Terramechanics, Vol. 117 | 1 Feb 2025
- Hybrid trajectory planning and tracking for automatic berthing: A grid-search and optimal control integration approachOcean Engineering, Vol. 317 | 1 Feb 2025
- Jointed tails enhance control of three-dimensional body rotationJournal of The Royal Society Interface, Vol. 22, No. 223 | 5 February 2025
- Transition Control of a Rotary Double Inverted Pendulum Using Direct CollocationMathematics, Vol. 13, No. 4 | 15 February 2025
- Simultaneous Design and Trajectory Optimization Strategies for Computationally Expensive ModelsAIAA Journal, Vol. 63, No. 2 | 1 Feb 2025
- Near time-optimal trajectory optimisation for drones in last-mile delivery using spatial reformulation approachTransportation Research Part C: Emerging Technologies, Vol. 171 | 1 Feb 2025
- Autonomy in the Real-World: Autonomous Trajectory Planning for Asteroid Reconnaissance via Stochastic OptimizationAIAA SCITECH 2025 Forum | 3 January 2025
- Multiple-Phase Trajectory Optimization for a Vehicle With a Novel Dynamic Phase in a Microgravity PlatformAIAA SCITECH 2025 Forum | 3 January 2025
- Trajectory Optimization for a Four In-Wheel Motor Vehicle in Double Lane Change ManeuverCONTROLO 2024 | 23 April 2025
- Re-entry Trajectory Design Using Chebyshev-Lobatto Collocation and Piecewise Cubic Hermite Interpolating Polynomial Based Control ProfilesProceedings of the International Conference on Systems, Control and Automation | 1 April 2025
- Re-entry Trajectory Optimization using Orthogonal Collocation-Based Parametrization and Sequential Quadratic Programming MethodProceedings of the International Conference on Systems, Control and Automation | 1 April 2025
- Optimal Navigation in Microfluidics via the Optimization of a Discrete LossPhysical Review Letters, Vol. 134, No. 4 | 29 January 2025
- Factor Graphs in Optimization-Based Robotic Control—A Tutorial and ReviewIEEE Access, Vol. 13 | 1 Jan 2025
- Trajectory Optimization for Non-Prehensile Manipulation of Space RobotsIEEE Access, Vol. 13 | 1 Jan 2025
- Establishing Personalized and Sparse Spinal Reflex Circuitry From Locomotion DataIEEE Transactions on Neural Systems and Rehabilitation Engineering, Vol. 33 | 1 Jan 2025
- Simultaneous Trajectory Optimization and Contact Selection for Contact-Rich Manipulation With High-Fidelity GeometryIEEE Transactions on Robotics, Vol. 41 | 1 Jan 2025
- Enhancing Gait Recognition: Data Augmentation via Physics-Based Biomechanical SimulationComputer Vision – ECCV 2024 Workshops | 12 May 2025
- State Planning Policies Online Reinforcement Learning2024 IEEE 63rd Conference on Decision and Control (CDC) | 16 Dec 2024
- Ramp Jump Attitude Control of Single-Track Two-Wheeled Robot via Contact-Implicit Trajectory Optimization2024 IEEE International Conference on Robotics and Biomimetics (ROBIO) | 10 Dec 2024
- Multi-Phase Trajectory Planning for Wind Energy Harvesting in Air-Launched UAV Swarm Rendezvous and Formation FlightDrones, Vol. 8, No. 12 | 28 November 2024
- An Optimal Control Platform for Simulation of Gait Patterns and Assistive Strategies, Based on “MATLAB-Moco” Co-Simulation2024 31st National and 9th International Iranian Conference on Biomedical Engineering (ICBME) | 28 Nov 2024
- Planning and Control of Slide-Steer Gait for Biped Robot Based on Ducted Fans2024 IEEE-RAS 23rd International Conference on Humanoid Robots (Humanoids) | 22 Nov 2024
- Gait Optimization for Legged Systems Through Mixed Distribution Cross-Entropy Optimization2024 IEEE-RAS 23rd International Conference on Humanoid Robots (Humanoids) | 22 Nov 2024
- Optimal Control of a Unitized Reversible Fuel Cell System for Hydrogen Production with Renewable Power *2024 IEEE URUCON | 18 Nov 2024
- 2D Trajectory Optimization Using Spherical Pendulum Dynamic Constraints for Reducing Liquid Sloshing on Mobile Robots2024 24th International Conference on Control, Automation and Systems (ICCAS) | 29 Oct 2024
- Global Trajectory Planning for Autonomous Race-Car with Vehicle Dynamics Model-Based Optimization2024 8th CAA International Conference on Vehicular Control and Intelligence (CVCI) | 25 Oct 2024
- One Problem, One Solution: Unifying Robot Design and Cell Layout Optimization2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 14 Oct 2024
- Path-Parameterised RRTs for Underactuated Systems2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 14 Oct 2024
- PAAMP: Polytopic Action-Set And Motion Planning for Long Horizon Dynamic Motion Planning via Mixed Integer Linear Programming2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 14 Oct 2024
- Study and analysis of pointing manoeuvres for the RAFTER missionGround-based and Airborne Telescopes X | 11 Sep 2024
- Preliminary optimization of cup-implant orientation in total-hip arthroplasty using a parametric predictive analysis of lower-limb dynamics influenced by spine stiffnessMultibody System Dynamics, Vol. 62, No. 1 | 30 November 2023
- Optimization of a Synergy-Driven Musculoskeletal Model to Estimate Muscle Excitations and Joint Moments of the Ankle Joint at Different Walking Speeds2024 10th IEEE RAS/EMBS International Conference for Biomedical Robotics and Biomechatronics (BioRob) | 1 Sep 2024
- Optimizing and Predicting Human-Symbiotic Robot Trajectory2024 10th IEEE RAS/EMBS International Conference for Biomedical Robotics and Biomechatronics (BioRob) | 1 Sep 2024
- Orbit-attitude coupled dynamics modeling and adaptive sliding mode control for detumbling large space debrisAerospace Science and Technology, Vol. 151 | 1 Aug 2024
- A Terminal Residual Vibration Suppression Method of a Robot Based on Joint Trajectory OptimizationMachines, Vol. 12, No. 8 | 6 August 2024
- A Survey of Autonomous Vehicle Behaviors: Trajectory Planning Algorithms, Sensed Collision Risks, and User ExpectationsSensors, Vol. 24, No. 15 | 24 July 2024
- Simultaneous Optimisation of Vehicle Design and Control for Improving Vehicle Performance and Energy Efficiency Using an Open Source Minimum Lap Time Simulation FrameworkWorld Electric Vehicle Journal, Vol. 15, No. 8 | 13 August 2024
- A Parallel Iterative Linear Quadratic Controller for Autonomous Trajectory Optimization2024 43rd Chinese Control Conference (CCC) | 28 Jul 2024
- Real-time Trajectory Optimization: An Integrated Approach of Differential Flatness and Convex Feasible Set2024 43rd Chinese Control Conference (CCC) | 28 Jul 2024
- Quasi Time-Optimal Trajectory Generation for Pneumatic Drives Considering their Actuator Dynamics and Constraints2024 IEEE International Conference on Advanced Intelligent Mechatronics (AIM) | 15 Jul 2024
- Optimal Charging with Active Thermal Management for eVTOL Aircraft Battery Packs2024 American Control Conference (ACC) | 10 Jul 2024
- Data-driven optimal control of undulatory swimmingPhysics of Fluids, Vol. 36, No. 7 | 19 July 2024
- Guaranteed Trajectory Tracking under Learned Dynamics with Contraction Metrics and Disturbance EstimationRobotics, Vol. 13, No. 7 | 30 June 2024
- Direct Shooting Method for Numerical Optimal Control: A Modified Transcription Approach2024 European Control Conference (ECC) | 25 Jun 2024
- Planning and tracking for safe autonomous overtaking and abort overtaking through a model predictive controller2024 IEEE Intelligent Vehicles Symposium (IV) | 2 Jun 2024
- Maximizing ollie height by optimizing control strategy and skateboard geometry using direct collocationSports Engineering, Vol. 27, No. 1 | 29 February 2024
- A three-stage sequential convex programming approach for trajectory optimizationAerospace Science and Technology, Vol. 149 | 1 Jun 2024
- Saltation Matrices: The Essential Tool for Linearizing Hybrid Dynamical SystemsProceedings of the IEEE, Vol. 112, No. 6 | 1 Jun 2024
- Sequential Trajectory Optimization for Externally-Actuated Modular Manipulators with Joint Locking2024 IEEE International Conference on Robotics and Automation (ICRA) | 13 May 2024
- Efficient Polynomial Sum-Of-Squares Programming for Planar Robotic Arms2024 IEEE International Conference on Robotics and Automation (ICRA) | 13 May 2024
- Convergent iLQR for Safe Trajectory Planning and Control of Legged Robots2024 IEEE International Conference on Robotics and Automation (ICRA) | 13 May 2024
- Improved time-optimal static programming algorithm for hypersonic vehicleInternational Journal of Control, Vol. 97, No. 5 | 29 March 2023
- Neural network-based hardware-in-the-loop implementation of fourier series parametrized control profiles for re-entry vehiclesAdvances in Space Research, Vol. 73, No. 9 | 1 May 2024
- Planning With Purpose: Task-Specific Trajectory OptimizationIEEE Robotics and Automation Letters, Vol. 9, No. 5 | 1 May 2024
- APTEN-Planner: Autonomous Parking of Semi-Trailer Train in Extremely Narrow EnvironmentsIEEE Transactions on Intelligent Transportation Systems, Vol. 25, No. 5 | 1 May 2024
- Sequential Optimal Trajectory Planning Scheme for Robotic Manipulators along Specified Path Based on Direct Collocation MethodActuators, Vol. 13, No. 5 | 15 May 2024
- Single Sequential Trajectory Optimization with Centroidal Dynamics and Whole-Body Kinematics for Vertical Jump of Humanoid RobotBiomimetics, Vol. 9, No. 5 | 2 May 2024
- A Theory of Functional Connections-Based hp-Adaptive Mesh Refinement Algorithm for Solving Hypersensitive Two-Point Boundary-Value ProblemsMathematics, Vol. 12, No. 9 | 29 April 2024
- Ecological Approach and Departure‐Driving Strategy Optimized by Using Syncretic Learning with Trapezoidal Collocation Algorithm for the Plug‐In Hybrid Electric VehiclesEnergy Technology, Vol. 12, No. 4 | 18 January 2024
- Humanoid Trajectory Optimization with B-Splines and Analytical Centroidal Momentum DerivativesInternational Journal of Humanoid Robotics, Vol. 21, No. 02 | 11 November 2023
- Simpson’s Variational Integrator for Systems with Quadratic LagrangiansAxioms, Vol. 13, No. 4 | 11 April 2024
- Real‐time route planning for low observable unmanned combat aerial vehicleAdvanced Control for Applications, Vol. 6, No. 1 | 27 February 2024
- Event-Based Guidance and Incremental Control with Application to Fixed-wing Unmanned Aerial Vehicle Perched Landing ManeuversJournal of Intelligent & Robotic Systems, Vol. 110, No. 1 | 21 February 2024
- Analytical differentiation of the articulated-body algorithm: a geometric multilinear approachMultibody System Dynamics, Vol. 60, No. 3 | 25 May 2023
- The Impact of Second-Order Analytical Derivatives on Regularized Direct Multiple Shooting Method for Impulsive Spacecraft Trajectory OptimizationGuidance, Navigation and Control, Vol. 04, No. 01 | 15 March 2024
- A Method for Generating Positioning and Anti-Sway Trajectories for Rotary Cranes Considering Constraints and Obstacle Avoidance Problems2024 IEEE 18th International Conference on Advanced Motion Control (AMC) | 28 Feb 2024
- Shaping the laser control landscape of a hydrogen transfer reaction by vibrational strong coupling. A direct optimal control approachThe Journal of Chemical Physics, Vol. 160, No. 7 | 15 February 2024
- A rapid solution method for surface unmanned vessels motion planning problem based on optimal controlInternational Conference on Smart Transportation and City Engineering (STCE 2023) | 14 Feb 2024
- Collocation methods for second and higher order systemsAutonomous Robots, Vol. 48, No. 1 | 28 January 2024
- A Bi-fidelity Strategy for Optimization under Uncertainty with Applications to Aircraft Trajectory OptimizationAIAA SCITECH 2024 Forum | 4 January 2024
- Motion Primitive Approach to Spacecraft Trajectory Design in the Neptune-Triton SystemAIAA SCITECH 2024 Forum | 4 January 2024
- Introducing the Tiger Optimization Software (TOPS): An Open-Source MATLAB Pseudospectral SolverAIAA SCITECH 2024 Forum | 4 January 2024
- Generalized Vectorized Trigonometric Regularization for Solving Optimal Control Problems with Complex Solution StructuresAIAA SCITECH 2024 Forum | 4 January 2024
- Simultaneous trajectory optimization for reusable payload fairing recovery via an initialization-enhanced hp-adaptive pseudospectral methodAIAA SCITECH 2024 Forum | 4 January 2024
- Energy optimal point-to-point motion profile optimizationMechanics Based Design of Structures and Machines, Vol. 52, No. 1 | 8 August 2022
- Approximate optimal control design for quadrotors: A computationally fast solutionOptimal Control Applications and Methods, Vol. 45, No. 1 | 22 August 2023
- A shape parameter insensitive CRBFs‐collocation for solving nonlinear optimal control problemsOptimal Control Applications and Methods, Vol. 45, No. 1 | 11 October 2023
- Nonlinear Programming-Based Robot Motion Planning for Gait Measurement When Passing PedestriansIntelligent Autonomous Systems 18 | 25 April 2024
- An Excel Motion Profile Optimization (MoPO) Tool for 1-DOF Mechatronic SystemsLatest Advancements in Mechanical Engineering | 8 October 2024
- Trajectory planning of cooperative robotic system for automated fiber placement in a leader-follower formationThe International Journal of Advanced Manufacturing Technology, Vol. 130, No. 1-2 | 30 November 2023
- Design, modelling, implementation, and trajectory planning of a 3-DOF cable driven parallel robotApplied Mathematical Modelling, Vol. 125 | 1 Jan 2024
- Recent advances in path integral control for trajectory optimization: An overview in theoretical and algorithmic perspectivesAnnual Reviews in Control, Vol. 57 | 1 Jan 2024
- A survey on convex optimization for guidance and control of vehicular systemsAnnual Reviews in Control, Vol. 57 | 1 Jan 2024
- Optimization-based local planner for a nonholonomic autonomous mobile robot in semi-structured environmentsRobotics and Autonomous Systems, Vol. 171 | 1 Jan 2024
- Knowledge Transfer for Cross-Domain Reinforcement Learning: A Systematic ReviewIEEE Access, Vol. 12 | 1 Jan 2024
- In-Flight Cable Length Control for Improved Quadrotor-Based Suspended Load TransportationIEEE Robotics and Automation Letters, Vol. 9, No. 1 | 1 Jan 2024
- Hybrid Trajectory Optimization for Autonomous Terrain Traversal of Articulated Tracked RobotsIEEE Robotics and Automation Letters, Vol. 9, No. 1 | 1 Jan 2024
- $\mathcal {H}_{2}$- and $\mathcal {H}_\infty$-Optimal Model Predictive Controllers for Robust Legged LocomotionIEEE Open Journal of Control Systems, Vol. 3 | 1 Jan 2024
- Optimization-Based Control for Dynamic Legged RobotsIEEE Transactions on Robotics, Vol. 40 | 1 Jan 2024
- Impact-Aware Bimanual Catching of Large-Momentum ObjectsIEEE Transactions on Robotics, Vol. 40 | 1 Jan 2024
- Motion Planning with Obstacle Avoidance for Wheeled Inverted Pendulum System Based on PMP Approach2023 IEEE 11th International Conference on Systems and Control (ICSC) | 18 Dec 2023
- Computational performance of musculoskeletal simulation in OpenSim Moco using parallel computingInternational Journal for Numerical Methods in Biomedical Engineering, Vol. 39, No. 12 | 25 September 2023
- Model Predictive Eco-Driving Control for Heavy-Duty Trucks Using Branch and Bound OptimizationIEEE Transactions on Intelligent Transportation Systems, Vol. 24, No. 12 | 1 Dec 2023
- Hybrid iLQR Model Predictive Control for Contact Implicit Stabilization on Legged RobotsIEEE Transactions on Robotics, Vol. 39, No. 6 | 1 Dec 2023
- Layered Control for Cooperative Locomotion of Two Quadrupedal Robots: Centralized and Distributed ApproachesIEEE Transactions on Robotics, Vol. 39, No. 6 | 1 Dec 2023
- A Constrained Two-Link Brachiating Robot for Power Line Inspection2023 International Conference on Electrical, Computer and Energy Technologies (ICECET) | 16 Nov 2023
- An Approximation Technique for Solving Linear-Quadratic Optimal Control Problems Using Chebyshev Polynomials*2023 IEEE International Symposium on Product Compliance Engineering - Asia (ISPCE-ASIA) | 4 Nov 2023
- A unified model with inertia shaping for highly dynamic jumps of legged robotsMechatronics, Vol. 95 | 1 Nov 2023
- Efficient Computation of State-Constrained Reachability Problems Using Hopf–Lax FormulaeIEEE Transactions on Automatic Control, Vol. 68, No. 11 | 1 Nov 2023
- Dynamic Model of a 20-Bus Power System for HEMP/GMD Controls-based Mitigation Design2023 North American Power Symposium (NAPS) | 15 Oct 2023
- Control Strategies for Large Power Transformer HEMP/GMD Protection2023 North American Power Symposium (NAPS) | 15 Oct 2023
- Take-Off Trajectory Optimization of a Pigeon-Inspired Flapping Wing Robot2023 IEEE International Conference on Unmanned Systems (ICUS) | 13 Oct 2023
- Motion Primitive Approach to Spacecraft Trajectory Design in a Multi-body SystemThe Journal of the Astronautical Sciences, Vol. 70, No. 5 | 11 September 2023
- Post-capture detumble trajectory stabilization for robotic active debris removalAdvances in Space Research, Vol. 72, No. 7 | 1 Oct 2023
- A computationally efficient sequential convex programming using Chebyshev collocation methodAerospace Science and Technology, Vol. 141 | 1 Oct 2023
- Design and Control of a Ballbot Drivetrain with High Agility, Minimal Footprint, and High Payload2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Oct 2023
- Staged Contact Optimization: Combining Contact-Implicit and Multi-Phase Hybrid Trajectory Optimization2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Oct 2023
- Whole-Body Dynamics-Based Aerial Fall Trajectory Optimization and Landing Control for Humanoid RobotBiomimetics, Vol. 8, No. 6 | 1 October 2023
- Robust Design and Operation of a Multistage Reactor for Methanol Synthesis from Renewable ResourcesProcesses, Vol. 11, No. 10 | 7 October 2023
- Multi-phase optimisation model predicts manual lifting motions with less reliance on experiment-based posture dataErgonomics, Vol. 66, No. 9 | 25 November 2022
- Trajectory optimization for takeoff and landing phase of UAM considering energy and safetyAerospace Science and Technology, Vol. 140 | 1 Sep 2023
- State constrained stochastic optimal control for continuous and hybrid dynamical systems using DFBSDEAutomatica, Vol. 155 | 1 Sep 2023
- A corridor-based flight mode transition strategy for agile ducted-fan tail-sitter UAV: Altitude-hold transitionChinese Journal of Aeronautics, Vol. 36, No. 9 | 1 Sep 2023
- Direct multiple shooting and direct collocation perform similarly in biomechanical predictive simulationsComputer Methods in Applied Mechanics and Engineering, Vol. 414 | 1 Sep 2023
- Fast trajectory planning for Dubins vehicles under cumulative probability of radar detectionSignal Processing, Vol. 210 | 1 Sep 2023
- Convexifying State-Constrained Optimal Control ProblemIEEE Transactions on Automatic Control, Vol. 68, No. 9 | 1 Sep 2023
- A Leader-Follower Trajectory Planning Approach for Cooperative Robotic System in Automated Fiber Placement2023 IEEE International Conference on Mechatronics and Automation (ICMA) | 6 Aug 2023
- Multibody dynamics and control using machine learningMultibody System Dynamics, Vol. 58, No. 3-4 | 27 February 2023
- How a serpentine tail assists agile motions of kangaroo rats: a dynamics and control approachNonlinear Dynamics, Vol. 111, No. 16 | 4 July 2023
- Overview and control strategies of autonomous sailboats—A surveyOcean Engineering, Vol. 281 | 1 Aug 2023
- VS-DDP: Variable Splitting Based Differential Dynamic Programming Algorithm for Autonomous Trajectory Planning2023 42nd Chinese Control Conference (CCC) | 24 Jul 2023
- Holistic Approach for Aircraft Trajectory Optimization Using Optimal ControlJournal of Aircraft, Vol. 60, No. 4 | 1 Jul 2023
- Terrain-Blind Humanoid Walking on Rough Terrain with Trajectory Optimization and Biarticular Springs2023 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 28 Jun 2023
- Strategies for Minimizing Joint Torque During Swing Motion of Radial-Type Quadruped Robot2023 20th International Conference on Ubiquitous Robots (UR) | 25 Jun 2023
- Navigating A Mobile Robot Using Switching Distributed Sensor Networks2023 European Control Conference (ECC) | 13 Jun 2023
- Minimum Time Trajectory Generation for Bounding Flight: Combining Posture Control and Thrust Vectoring2023 European Control Conference (ECC) | 13 Jun 2023
- Hybrid Optimal Control for Dynamical Systems using Gaussian Process Regression and Unscented Transform *2023 European Control Conference (ECC) | 13 Jun 2023
- Fusion of video and inertial sensing data via dynamic optimization of a biomechanical modelJournal of Biomechanics, Vol. 155 | 1 Jun 2023
- Inaccuracy Matters: Accounting for Solution Accuracy in Event-Triggered Nonlinear Model Predictive ControlIEEE Transactions on Automatic Control, Vol. 68, No. 6 | 1 Jun 2023
- Trajectory Planning With Deep Reinforcement Learning in High-Level Action SpacesIEEE Transactions on Aerospace and Electronic Systems, Vol. 59, No. 3 | 1 Jun 2023
- Teleoperation of Humanoid Robots: A SurveyIEEE Transactions on Robotics, Vol. 39, No. 3 | 1 Jun 2023
- Robotic Contact JugglingIEEE Transactions on Robotics, Vol. 39, No. 3 | 1 Jun 2023
- Bucket Loading Trajectory Optimization for the Automated Wheel LoaderIEEE Transactions on Vehicular Technology, Vol. 72, No. 6 | 1 Jun 2023
- Control-Minimal Time-Assigned Path-Constrained Trajectory Optimization2023 American Control Conference (ACC) | 31 May 2023
- Twisting Spine or Rigid Torso: Exploring Quadrupedal Morphology via Trajectory Optimization2023 IEEE International Conference on Robotics and Automation (ICRA) | 29 May 2023
- OpTaS: An Optimization-based Task Specification Library for Trajectory Optimization and Model Predictive Control2023 IEEE International Conference on Robotics and Automation (ICRA) | 29 May 2023
- On the Synthesis of Stable Walkover Gaits for the AcrobotIEEE Transactions on Control Systems Technology, Vol. 31, No. 3 | 1 May 2023
- Autogenerated manipulation primitivesThe International Journal of Robotics Research, Vol. 42, No. 6 | 17 May 2023
- Modeling and Control of a Soft Robotic Fish with Integrated Soft SensingAdvanced Intelligent Systems, Vol. 5, No. 4 | 17 March 2021
- Path-Constrained and Collision-Free Optimal Trajectory Planning for Robot ManipulatorsIEEE Transactions on Automation Science and Engineering, Vol. 20, No. 2 | 1 Apr 2023
- Predictive simulation of single-leg landing scenarios for ACL injury risk factors evaluationPLOS ONE, Vol. 18, No. 3 | 9 March 2023
- Autonomous parafoil precision landing using convex real-time optimized guidance and controlCEAS Space Journal, Vol. 15, No. 2 | 18 January 2022
- Policy Iteration for Optimal Control of Discrete-Time Time-Varying Nonlinear SystemsIEEE/CAA Journal of Automatica Sinica, Vol. 10, No. 3 | 1 Mar 2023
- Lower Limb Exoskeleton - Energy Optimization of Bipedal Walking With Energy Recycling - Modeling and SimulationIEEE Robotics and Automation Letters, Vol. 8, No. 3 | 1 Mar 2023
- Top-Down Control Design Strategy for Electric Power Grid EMP (E3) Protection2023 IEEE Texas Power and Energy Conference (TPEC) | 13 Feb 2023
- Space splitting convexification: a local solution method for nonconvex optimal control problemsInternational Journal of Control, Vol. 96, No. 2 | 25 November 2021
- Direct Collocation Methods for Trajectory Optimization in Constrained Robotic SystemsIEEE Transactions on Robotics, Vol. 39, No. 1 | 1 Feb 2023
- Symmetrical Efficient Gait Planning Based on Constrained Direct CollocationMicromachines, Vol. 14, No. 2 | 10 February 2023
- Energy-Minimization Path Planning and Control of Unmanned Aerial Systems for Advanced Air MobilityAIAA SCITECH 2023 Forum | 19 January 2023
- Air-taxi transition trajectory optimization with physics-based modelsAIAA SCITECH 2023 Forum | 19 January 2023
- Global Optimization in Space EngineeringEncyclopedia of Optimization | 21 September 2022
- Augmented Lagrange Based Particle Swarm Optimization for Missile Interception GuidanceThe Proceedings of the 2021 Asia-Pacific International Symposium on Aerospace Technology (APISAT 2021), Volume 2 | 30 September 2022
- Optimization of Transition Trajectory for High-Lift Hybrid Mode UAVProceedings of 2022 International Conference on Autonomous Unmanned Systems (ICAUS 2022) | 10 March 2023
- Hierarchical Trajectory Optimization for Humanoid Robot Jumping MotionIntelligent Robotics and Applications | 6 October 2023
- Band-type resonance: non-discrete energetically optimal resonant statesNonlinear Dynamics, Vol. 111, No. 2 | 14 October 2022
- GuidanceModern Spacecraft Guidance, Navigation, and Control | 1 Jan 2023
- Modelling and Control of COVID-19 in Small Environments with Two-Group PopulationIFAC-PapersOnLine, Vol. 56, No. 2 | 1 Jan 2023
- Biomechanical inverted pendulum: a model for initial testing of interaction controlsIFAC-PapersOnLine, Vol. 56, No. 2 | 1 Jan 2023
- Mesh Refinement with Early Termination for Dynamic Feasibility ProblemsIFAC-PapersOnLine, Vol. 56, No. 2 | 1 Jan 2023
- Optimal Generator Policy for Hybrid Fuel UAV under Airspace Noise RestrictionsIFAC-PapersOnLine, Vol. 56, No. 3 | 1 Jan 2023
- Safety-Critical Trajectory Generation and Tracking Control of Autonomous Underwater VehiclesIEEE Journal of Oceanic Engineering, Vol. 48, No. 1 | 1 Jan 2023
- Solving Dynamic Optimization Problems to a Specified Accuracy: An Alternating Approach Using Integrated ResidualsIEEE Transactions on Automatic Control, Vol. 68, No. 1 | 1 Jan 2023
- Dynamic optimal allocation of medical resources: a case study of face masks during the first COVID-19 epidemic wave in the United StatesMathematical Biosciences and Engineering, Vol. 20, No. 7 | 1 Jan 2023
- An Improved Optimal Trajectory Planning Method of Six-axis Robotic Manipulators along Prescribed Path Constraints2022 International Conference on Automation, Robotics and Computer Engineering (ICARCE) | 16 Dec 2022
- Constrained trajectory synthesis via quasi-interpolation2022 IEEE 61st Conference on Decision and Control (CDC) | 6 Dec 2022
- Learning a Better Control Barrier Function2022 IEEE 61st Conference on Decision and Control (CDC) | 6 Dec 2022
- Switched electromechanical dynamics for transient phase control of brushed DC servomotorChaos: An Interdisciplinary Journal of Nonlinear Science, Vol. 32, No. 12 | 5 December 2022
- Walking Speed Control of Planar Bipedal Robot with Phase ControlInternational Journal of Humanoid Robotics, Vol. 19, No. 06 | 14 December 2022
- A Non-Flat Terrain Biped Gait Planner Based on DIRCONBiomimetics, Vol. 7, No. 4 | 18 November 2022
- Motion Planning and Control of Wheel-legged Robot for Obstacle CrossingJournal of Korea Robotics Society, Vol. 17, No. 4 | 1 Dec 2022
- Wind-optimal lateral trajectories for a multirotor aircraft in urban air mobilityFrontiers in Aerospace Engineering, Vol. 1 | 30 November 2022
- A Review on Trajectory Optimisation Techniques for Launch Vehicles during Ascent Phase2022 IEEE 19th India Council International Conference (INDICON) | 24 Nov 2022
- Multi-objective optimal control of bioconversion process considering system sensitivity and control variationJournal of Process Control, Vol. 119 | 1 Nov 2022
- Biomechanical Trajectory Optimization of Human Sit-to-Stand Motion With Stochastic Motion Planning FrameworkIEEE Transactions on Medical Robotics and Bionics, Vol. 4, No. 4 | 1 Nov 2022
- Development and Validation of a Framework for Predictive Simulation of Treadmill GaitJournal of Biomechanical Engineering, Vol. 144, No. 11 | 14 July 2022
- Transition Flight Trajectory Optimization for a Flapping-Wing Micro Air Vehicle with Unsteady Vortex-Lattice MethodAerospace, Vol. 9, No. 11 | 27 October 2022
- Time Optimal Trajectory Optimization for Vertical Parking of Heavy Duty Vehicle based on Chebyshev Pseudospectral Method2022 6th CAA International Conference on Vehicular Control and Intelligence (CVCI) | 28 Oct 2022
- A Solution to Slosh-free Robot Trajectory Optimization2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- A Legendre-Gauss Pseudospectral Collocation Method for Trajectory Optimization in Second Order Systems2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Trajectory Optimization and Following for a Three Degrees of Freedom Overactuated Floating Platform2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- DiMOpt: a Distributed Multi-robot Trajectory Optimization Algorithm2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Design Optimization of an Ultrafast-Striking Mantis Shrimp Microrobot2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Real-Time Predictive Kinematics Control of Redundancy: a Benchmark of Optimal Control Approaches2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Minor Change, Major Gains II: Are Maximal Coordinates the Fastest Choice for Trajectory Optimization?2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Robot Skill Learning with Identification of Preconditions and Postconditions via Level Set Estimation2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 23 Oct 2022
- Approximation of optimal control surfaces for 2 × 2 skew-symmetric evolutionary game dynamicsChaos, Solitons & Fractals, Vol. 163 | 1 Oct 2022
- Convex Optimization for Trajectory Generation: A Tutorial on Generating Dynamically Feasible Trajectories Reliably and EfficientlyIEEE Control Systems, Vol. 42, No. 5 | 1 Oct 2022
- Design of Pulse Forming Systems for Pulsed Electromagnetic Manufacturing ApplicationsIEEE Transactions on Plasma Science, Vol. 50, No. 10 | 1 Oct 2022
- Antifragile Control Systems: The Case of an Anti-Symmetric Network Model of the Tumor-Immune-Drug InteractionsSymmetry, Vol. 14, No. 10 | 29 September 2022
- Fast trajectory planning and control of a lab-scale 3D gantry crane for a moving target in an environment with obstaclesControl Engineering Practice, Vol. 126 | 1 Sep 2022
- Different Phases in Manual Materials Handling Have Different Performance Criteria: Evidence From Multi-Objective OptimizationJournal of Biomechanical Engineering, Vol. 144, No. 9 | 30 March 2022
- Kinodynamic Trajectory Optimization of Dual-Arm Space Robot for Stabilizing a Tumbling TargetInternational Journal of Aerospace Engineering, Vol. 2022 | 18 Aug 2022
- Convex optimization of collision avoidance maneuvers in the presence of uncertaintyActa Astronautica, Vol. 197 | 1 Aug 2022
- Comparison of different direct trajectory optimization methods based on the periodic gait of a five-linked walker2022 41st Chinese Control Conference (CCC) | 25 Jul 2022
- A Standing Assist Trajectory Generation Method of Transfer Robot2022 IEEE International Conference on Real-time Computing and Robotics (RCAR) | 17 Jul 2022
- Optimizing Dynamic Legged Locomotion in Mixed, Resistive Media2022 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 11 Jul 2022
- Concurrent Trajectory Optimization and Aircraft Design for the Air Cargo Challenge CompetitionAerospace, Vol. 9, No. 7 | 13 July 2022
- Time-Optimal Trajectory Planning of Six-Axis Manipulators Based on the Improved Direct Collocation Method with FMUApplied Sciences, Vol. 12, No. 13 | 3 July 2022
- Robust Nonlinear Tracking Control with Exponential Convergence Using Contraction Metrics and Disturbance EstimationSensors, Vol. 22, No. 13 | 23 June 2022
- Industrial data science – a review of machine learning applications for chemical and process industriesReaction Chemistry & Engineering, Vol. 7, No. 7 | 1 January 2022
- Core Components of an Optimization Framework for Engineering Systems based on Automatic DifferentiationAIAA AVIATION 2022 Forum | 20 June 2022
- Observability based Path Planning for Multi-Agent Systems to aid Relative Pose Estimation2022 International Conference on Unmanned Aircraft Systems (ICUAS) | 21 Jun 2022
- Variable-time-interval trajectory optimization-based dynamic walking control of bipedal robotRobotica, Vol. 40, No. 6 | 27 September 2021
- Lightweight Precision Inertial Computation based on Chebyshev Polynomial Optimization2022 29th Saint Petersburg International Conference on Integrated Navigation Systems (ICINS) | 30 May 2022
- A Model Predictive-based Motion Planning Method for Safe and Agile Traversal of Unknown and Occluding Environments2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Trajectory Planning for Sensors and Payloads Moving Through Mixed and Uncertain Media2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Hybrid Event Shaping to Stabilize Periodic Hybrid Orbits2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Locomotion as a Risk-mitigating Behavior in Uncertain Environments: A Rapid Planning and Few-shot Failure Adaptation Approach2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Mini Cheetah, the Falling Cat: A Case Study in Machine Learning and Trajectory Optimization for Robot Acrobatics2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Trajectory Optimization Formulation with Smooth Analytical Derivatives for Track-leg and Wheel-leg Ground Robots2022 International Conference on Robotics and Automation (ICRA) | 23 May 2022
- Ornithopter Trajectory Optimization with Neural Networks and Random ForestJournal of Intelligent & Robotic Systems, Vol. 105, No. 1 | 7 May 2022
- Elastic-bound conditions for energetically optimal elasticity and their implications for biomimetic propulsion systemsNonlinear Dynamics, Vol. 108, No. 3 | 22 March 2022
- A New Approach to Finite-Horizon Optimal Control for Discrete-Time Affine Nonlinear Systems via a Pseudolinear MethodIEEE Transactions on Automatic Control, Vol. 67, No. 5 | 1 May 2022
- Load-Distribution-Based Trajectory Planning and Control for a Multilift SystemJournal of Aerospace Information Systems, Vol. 19, No. 5 | 1 May 2022
- Trajectory Optimization for Thermally-Actuated Soft Planar Robot Limbs2022 IEEE 5th International Conference on Soft Robotics (RoboSoft) | 4 Apr 2022
- A minimum-time obstacle-avoidance path planning algorithm for unmanned aerial vehiclesNumerical Algorithms, Vol. 89, No. 4 | 12 October 2021
- Dual Beetle Antennae Search system for optimal planning and robust control of 5-link biped robotsJournal of Computational Science, Vol. 60 | 1 Apr 2022
- Vision-Only Robot Navigation in a Neural Radiance WorldIEEE Robotics and Automation Letters, Vol. 7, No. 2 | 1 Apr 2022
- Contact-Implicit Direct Collocation With a Discontinuous Velocity StateIEEE Robotics and Automation Letters, Vol. 7, No. 2 | 1 Apr 2022
- Riemannian Formulation of Pontryagin’s Maximum Principle for the Optimal Control of Robotic ManipulatorsMathematics, Vol. 10, No. 7 | 30 March 2022
- Feedback Strategies for Hypersonic Pursuit of a Ground Evader2022 IEEE Aerospace Conference (AERO) | 5 Mar 2022
- Nonlinear Model Predictive Control for Agile Guidance of Fixed-Wing sUAS2022 IEEE Aerospace Conference (AERO) | 5 Mar 2022
- Nonlinear observer for electromagnetic position estimation using active current controlMechanical Systems and Signal Processing, Vol. 167 | 1 Mar 2022
- Fast Barycentric-Based Evaluation Over Spectral/hp ElementsJournal of Scientific Computing, Vol. 90, No. 2 | 10 January 2022
- Minimum-time optimal control for battery electric vehicles with four wheel-independent drives considering electrical overloadingVehicle System Dynamics, Vol. 60, No. 2 | 29 September 2020
- Observability Metrics for Single-Target Tracking With Bearings-Only MeasurementsIEEE Transactions on Systems, Man, and Cybernetics: Systems, Vol. 52, No. 2 | 1 Feb 2022
- Robust Co-Design: Coupling Morphology and Feedback Design Through Stochastic ProgrammingJournal of Dynamic Systems, Measurement, and Control, Vol. 144, No. 2 | 12 November 2021
- An Optimization-based Motion Planner for a Mobile Manipulator to Perform Tasks During the Motion2022 IEEE/SICE International Symposium on System Integration (SII) | 9 Jan 2022
- An Optimal Engagement Zone Avoidance Scenario in 2-DAIAA SCITECH 2022 Forum | 29 December 2022
- The Use of Long Short-Term Memory Artificial Neural Networks for the Low-Thrust Orbit-Raising ProblemAIAA SCITECH 2022 Forum | 29 December 2022
- Energy-aware 3D Leader-Follower Flight Trajectory Optimization for Fixed-Wing AircraftAIAA SCITECH 2022 Forum | 29 December 2022
- Direct Collocation-Based Optimal Controller for Multi-modal Assistance: Simulation StudyWearable Robotics: Challenges and Trends | 2 July 2021
- The Pareto-Frontier-Based Stiffness of a Controller: Trade-off Between Trajectory Plan and Controller DesignIntelligent Computing | 7 July 2022
- Safe chance constrained reinforcement learning for batch process controlComputers & Chemical Engineering, Vol. 157 | 1 Jan 2022
- Spacecraft Reentry Trajectory Optimization using Search Space Reduction TechniqueIFAC-PapersOnLine, Vol. 55, No. 1 | 1 Jan 2022
- Teaching Predictive Control Using Specification-based Summative AssessmentsIFAC-PapersOnLine, Vol. 55, No. 17 | 1 Jan 2022
- Time-constrained Optimization of Sit-to-stand Movements in Contact with the EnvironmentIFAC-PapersOnLine, Vol. 55, No. 27 | 1 Jan 2022
- Robust Quantum Optimal Control with Trajectory OptimizationPhysical Review Applied, Vol. 17, No. 1 | 27 January 2022
- A Fast Parameter Identification Method for Composite Load Model Based on Jumping and Steady-State Points of Measured DataIEEE Access, Vol. 10 | 1 Jan 2022
- ChevOpt: Continuous-Time State Estimation by Chebyshev Polynomial OptimizationIEEE Transactions on Signal Processing, Vol. 70 | 1 Jan 2022
- Flight Envelope Prediction via Optimal Control-Based Reachability AnalysisJournal of Guidance, Control, and Dynamics, Vol. 45, No. 1 | 1 Jan 2022
- Micro-scale chiplet assembly control with chiplet-to-chiplet potential interaction2021 60th IEEE Conference on Decision and Control (CDC) | 14 Dec 2021
- Dakota and Pyomo for Closed and Open Box Controller Gain Tuning2021 60th IEEE Conference on Decision and Control (CDC) | 14 Dec 2021
- iLQR for Piecewise-Smooth Hybrid Dynamical Systems2021 60th IEEE Conference on Decision and Control (CDC) | 14 Dec 2021
- A Position-Control-Based Framework for Dynamic and Robust Quadrupedal Trotting2021 6th International Conference on Mechanical Engineering and Robotics Research (ICMERR) | 11 Dec 2021
- A Guidance System for Tactical Autonomous Unmanned Aerial VehiclesJournal of Intelligent & Robotic Systems, Vol. 103, No. 4 | 25 November 2021
- Predictive simulation for the design of robotic solution to mobility aidJournal of Computational Design and Engineering, Vol. 8, No. 6 | 26 November 2021
- Single-stage to orbit ascent trajectory optimisation with reliable evolutionary initial guessOptimization and Engineering, Vol. 20 | 20 November 2021
- Optimized Launch to Rendezvous Trajectories for a Mars Ascent Vehicle Using Direct CollocationASCEND 2021 | 3 November 2021
- Combining the Advantages of Different Processing Solutions Using a Novel Motion Processing ApproachApplied Sciences, Vol. 11, No. 21 | 1 November 2021
- Multi-mode Motion Control System Design and Implementation for an Air-ground Amphibious Robot2021 China Automation Congress (CAC) | 22 Oct 2021
- Accelerating Second-Order Differential Dynamic Programming for Rigid-Body SystemsIEEE Robotics and Automation Letters, Vol. 6, No. 4 | 1 Oct 2021
- Trajectory Optimization of 5-Link Biped Robot Using Beetle Antennae SearchIEEE Transactions on Circuits and Systems II: Express Briefs, Vol. 68, No. 10 | 1 Oct 2021
- Real-Time Trajectory Planning for Automated Vehicle Safety and Performance in Dynamic EnvironmentsJournal of Autonomous Vehicles and Systems, Vol. 1, No. 4 | 30 December 2021
- TrajectoTree: Trajectory Optimization Meets Tree Search for Planning Multi-contact Dexterous Manipulation2021 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 27 Sep 2021
- Human Motion Imitation using Optimal Control with Time-Varying Weights2021 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 27 Sep 2021
- Path-constrained optimal trajectory planning for robot manipulators with obstacle avoidance2021 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 27 Sep 2021
- Inertial Tail Effects during Righting of Squirrels in Unexpected Falls: From Behavior to RoboticsIntegrative and Comparative Biology, Vol. 61, No. 2 | 30 April 2021
- Dynamic Modeling, Analysis, and Design Synthesis of a Reduced Complexity Quadruped with a Serpentine Robotic TailIntegrative and Comparative Biology, Vol. 61, No. 2 | 17 May 2021
- Mechanisms for Mid-Air Reorientation Using Tail Rotation in Gliding GeckosIntegrative and Comparative Biology, Vol. 61, No. 2 | 18 June 2021
- Nonlinear Optimal Control Synthesis Using Basis Functions: Algorithms and Examples2021 IEEE Conference on Control Technology and Applications (CCTA) | 9 Aug 2021
- Minimum-time optimal control for vehicles with active rear-axle steering, transfer case and variable parametersVehicle System Dynamics, Vol. 59, No. 8 | 1 April 2020
- An Optimization Approach to Mapping the Feasible Mission Space of a High-Altitude Long-Endurance Solar AircraftAIAA AVIATION 2021 FORUM | 28 July 2021
- Surrogate-Based Trajectory Optimization Using Gradient-Enhanced Neural NetworksAIAA AVIATION 2021 FORUM | 28 July 2021
- Representation-Free Model Predictive Control for Dynamic Motions in QuadrupedsIEEE Transactions on Robotics, Vol. 37, No. 4 | 1 Aug 2021
- Effects of Passive Biarticular Muscles on Walking Performance for Bipedal Robots2021 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 12 Jul 2021
- Toward immersive spacecraft trajectory design: Mapping user drawings to natural periodic orbitsActa Astronautica, Vol. 184 | 1 Jul 2021
- An Investigation of a Balanced Hybrid Active-Passive Actuator for Physical Human-Robot InteractionIEEE Robotics and Automation Letters, Vol. 6, No. 3 | 1 Jul 2021
- A Scheme of Sustainable Trajectory Optimization for Aircraft Cruise Based on Comprehensive Social BenefitDiscrete Dynamics in Nature and Society, Vol. 2021 | 1 Jul 2021
- Neural networks algorithms for ornithopter trajectory optimization2021 International Conference on Unmanned Aircraft Systems (ICUAS) | 15 Jun 2021
- A novel 3D path following control framework for robots performing surface finishing tasksMechatronics, Vol. 76 | 1 Jun 2021
- Optimization-Inspired Controller Design for Transient Legged Locomotion2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- Autonomous Vehicle Motion Planning via Recurrent Spline Optimization2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- High-Frequency Nonlinear Model Predictive Control of a Manipulator2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- Trajectory Optimisation in Learned Multimodal Dynamical Systems via Latent-ODE Collocation2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- LTO: Lazy Trajectory Optimization with Graph-Search Planning for High DOF Robots in Cluttered Environments2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- A novel method for computing the 3D friction cone using complimentary constraints2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- Equality Constrained Linear Optimal Control With Factor Graphs2021 IEEE International Conference on Robotics and Automation (ICRA) | 30 May 2021
- Iterative optimal control synthesis for nonlinear switching systems2021 American Control Conference (ACC) | 25 May 2021
- SLIP-SL: Walking Control Based on an Extended SLIP Model with Swing Leg DynamicsAdvances in Science, Technology and Engineering Systems Journal, Vol. 6, No. 3 | 1 May 2021
- Direct Optimal Control Approach to Laser-Driven Quantum Particle DynamicsFrontiers in Physics, Vol. 9 | 23 April 2021
- Multirate moving horizon estimation combined with parameter subset selectionComputers & Chemical Engineering, Vol. 147 | 1 Apr 2021
- Trajectory Optimization of Contact-Rich Motions Using Implicit Differential Dynamic ProgrammingIEEE Robotics and Automation Letters, Vol. 6, No. 2 | 1 Apr 2021
- Identification of Postural Controllers in Human Standing BalanceJournal of Biomechanical Engineering, Vol. 143, No. 4 | 14 December 2020
- Optimal Control of a MIMO Bioreactor System Using Direct ApproachInternational Journal of Control, Automation and Systems, Vol. 19, No. 3 | 9 January 2021
- Reconstruction of admissible joint-references from a prescribed output-reference for the non-standard and generalized N-trailersEuropean Journal of Control, Vol. 58 | 1 Mar 2021
- Multiphase Trajectory Generation for Planar Biped Robot Using Direct Collocation MethodMathematical Problems in Engineering, Vol. 2021 | 29 Jan 2021
- Trajectory Planning and Control for a Multilift System Based on Load DistributionAIAA Scitech 2021 Forum | 4 January 2021
- A Comparison of Aerodynamics Models for Optimizing the Takeoff and Transition of a Bi-wing TailsitterAIAA Scitech 2021 Forum | 4 January 2021
- A Predictive Guidance Scheme for Pursuit-Evasion EngagementsAIAA Scitech 2021 Forum | 4 January 2021
- Attitude Trajectory Optimization for Agile Satellites in Autonomous Remote Sensing ConstellationsAIAA Scitech 2021 Forum | 4 January 2021
- Optimal Evasion in an Active Target Defense ScenarioAIAA Scitech 2021 Forum | 4 January 2021
- Open-Source, Object-Oriented, Multi-Phase Pseudospectral Optimization Using PyomoAIAA Scitech 2021 Forum | 4 January 2021
- A Trajectory Optimization Method for Stabilizing a Tumbling Target Using Dual-Arm Space RobotsIntelligent Robotics and Applications | 20 October 2021
- Development of a Powered Assistive Device for Patients with Lower Limb Muscle WeaknessMechanism and Machine Science | 2 July 2020
- Trajectory Optimization of Space Maneuver Vehicle Using Grey Wolf OptimizerSoft Computing for Problem Solving | 14 October 2021
- Grey Wolf Optimizer-Based Orthogonal Collocation Approach for Trajectory Optimization of Space ShuttleSoft Computing for Problem Solving | 14 October 2021
- Controlling Draft Interactions Between Quadcopter Unmanned Aerial Vehicles with Physics-aware ModelingJournal of Intelligent & Robotic Systems, Vol. 101, No. 1 | 15 December 2020
- Advances in trajectory optimization for space vehicle controlAnnual Reviews in Control, Vol. 52 | 1 Jan 2021
- A survey of guidance, navigation, and control systems for autonomous multi-rotor small unmanned aerial systemsAnnual Reviews in Control, Vol. 52 | 1 Jan 2021
- Accuracy-awareness: A pessimistic approach to optimal control of triggered mobile communication networksIFAC-PapersOnLine, Vol. 54, No. 6 | 1 Jan 2021
- Lithium-Sulfur Battery Discharge Optimization using a Thermally-Coupled Equivalent Circuit ModelIFAC-PapersOnLine, Vol. 54, No. 20 | 1 Jan 2021
- Feedback Control Design for Robust Comfortable Sit-to-Stand Motions of 3D Lower-Limb ExoskeletonsIEEE Access, Vol. 9 | 1 Jan 2021
- Review on Control Strategies for Lower Limb Rehabilitation ExoskeletonsIEEE Access, Vol. 9 | 1 Jan 2021
- Aircraft three-dimensional hardconstrained trajectory planning using pseudospectral optimization methodJournal of Aerospace Technology and Management, Vol. 13 | 1 January 2021
- OpenSim Moco: Musculoskeletal optimal controlPLOS Computational Biology, Vol. 16, No. 12 | 28 December 2020
- An Integral Penalty-Barrier Direct Transcription Method for Optimal Control2020 59th IEEE Conference on Decision and Control (CDC) | 14 Dec 2020
- Direct Transcription for Dynamic Optimization: A Tutorial with a Case Study on Dual-Patient Ventilation During the COVID-19 Pandemic2020 59th IEEE Conference on Decision and Control (CDC) | 14 Dec 2020
- Investigation into control strategies for manoeuvring in adverse weather conditionsOcean Engineering, Vol. 218 | 1 Dec 2020
- Neural network optimal control in astrodynamics: Application to the missed thrust problemActa Astronautica, Vol. 176 | 1 Nov 2020
- Risk-constrained Motion Planning for Robot Locomotion: Formulation and Running Robot Demonstration2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 24 Oct 2020
- Modeling and Control of a Hybrid Wheeled Jumping Robot2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 24 Oct 2020
- Rapid Bipedal Gait Optimization in CasADi2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 24 Oct 2020
- A Comprehensive Trajectory Planner for a Person-Following ATV2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 24 Oct 2020
- A trajectory optimization method with frictional contacts for on-orbit captureActa Astronautica, Vol. 175 | 1 Oct 2020
- Minor Change, Major Gains: The Effect of Orientation Formulation on Solving Time for Multi-Body Trajectory OptimizationIEEE Robotics and Automation Letters, Vol. 5, No. 4 | 1 Oct 2020
- Contact-Implicit Trajectory Optimization Using an Analytically Solvable Contact Model for Locomotion on Variable GroundIEEE Robotics and Automation Letters, Vol. 5, No. 4 | 1 Oct 2020
- Online Hybrid Motion Planning for Dyadic Collaborative Manipulation via Bilevel OptimizationIEEE Transactions on Robotics, Vol. 36, No. 5 | 1 Oct 2020
- Construction of a Valid Domain for a Hybrid Model and Its Application to Dynamic Optimization with Controlled ExplorationIndustrial & Engineering Chemistry Research, Vol. 59, No. 37 | 21 August 2020
- Efficient Exploration in Side-Scrolling Video Games with Trajectory ReplayThe Computer Games Journal, Vol. 9, No. 3 | 5 November 2019
- Circular Rejoin in 3D Using Bézier Paths2020 IEEE Conference on Control Technology and Applications (CCTA) | 1 Aug 2020
- Dynamic modeling and trajectory tracking control method of segmented linkage cable-driven hyper-redundant robotNonlinear Dynamics, Vol. 101, No. 1 | 29 June 2020
- Bipedal Walking Based on Improved Spring Loaded Inverted Pendulum Model with Swing Leg (SLIP-SL)2020 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 1 Jul 2020
- Collision-free Trajectory Planning for Autonomous Surface Vehicle2020 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 1 Jul 2020
- Determination of the Pharmaceutical Treatment-Dosage for Cancer Patients Using Non-Linear Optimal Control Techniques2020 24th International Conference on Circuits, Systems, Communications and Computers (CSCC) | 1 Jul 2020
- MPC Performances for Nonlinear Systems Using Several Linearization Models2020 American Control Conference (ACC) | 1 Jul 2020
- Optimal Trajectory Tracking for a Magnetically Driven Microswimmer2020 American Control Conference (ACC) | 1 Jul 2020
- Optimized Intermittent Pharmaceutical Treatment of Cancer Using Non-Linear Optimal Control TechniquesWSEAS TRANSACTIONS ON BIOLOGY AND BIOMEDICINE, Vol. 17 | 22 June 2020
- Reducing the Noise Impact of Small Aircraft through Indirect Trajectory OptimizationAIAA AVIATION 2020 FORUM | 8 June 2020
- Wind-Optimal Trajectories for Multirotor eVTOL Aircraft on UAM MissionsAIAA AVIATION 2020 FORUM | 8 June 2020
- Optimized Jumping of an Articulated Robotic Leg2020 17th International Conference on Ubiquitous Robots (UR) | 1 Jun 2020
- Online Trajectory Planning Through Combined Trajectory Optimization and Function Approximation: Application to the Exoskeleton Atalante2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Exploiting sparsity in robot trajectory optimization with direct collocation and geometric algorithms2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Trajectory Optimization for a Six-DOF Cable-Suspended Parallel Robot with Dynamic Motions Beyond the Static Workspace2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Planning for the Unexpected: Explicitly Optimizing Motions for Ground Uncertainty in Running2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Dynamic Coupling as an Indicator of Gait Robustness for Underactuated Biped Robots2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Sufficiently Accurate Model Learning2020 IEEE International Conference on Robotics and Automation (ICRA) | 1 May 2020
- Trajectory Planning for Mechanical Systems Based on Time-Reversal SymmetrySymmetry, Vol. 12, No. 5 | 8 May 2020
- Knee abduction moment is predicted by lower gluteus medius force and larger vertical and lateral ground reaction forces during drop vertical jump in female athletesJournal of Biomechanics, Vol. 103 | 1 Apr 2020
- One Robot for Many Tasks: Versatile Co-Design Through Stochastic ProgrammingIEEE Robotics and Automation Letters, Vol. 5, No. 2 | 1 Apr 2020
- Differential Flatness Based Path Planning With Direct Collocation on Hybrid Modes for a Quadrotor With a Cable-Suspended PayloadIEEE Robotics and Automation Letters, Vol. 5, No. 2 | 1 Apr 2020
- On the feasibility of the Rayleigh cycle for dynamic soaring trajectoriesPLOS ONE, Vol. 15, No. 3 | 3 March 2020
- Identification of the human postural control system through stochastic trajectory optimizationJournal of Neuroscience Methods, Vol. 334 | 1 Mar 2020
- Direct Methods Comparison for the Active Target Defense ScenarioAIAA Scitech 2020 Forum | 5 January 2020
- Real-Time Egocentric Navigation Using 3D SensingMachine Vision and Navigation | 1 October 2019
- Perception and Control for Connected and Automated VehiclesEnergy-Efficient Driving of Road Vehicles | 1 August 2019
- All you need to know about model predictive control for buildingsAnnual Reviews in Control, Vol. 50 | 1 Jan 2020
- Mesh refinement for event-triggered nonlinear model predictive controlIFAC-PapersOnLine, Vol. 53, No. 2 | 1 Jan 2020
- Autonomous-Vehicle Maneuver Planning Using Segmentation and the Alternating Augmented Lagrangian MethodIFAC-PapersOnLine, Vol. 53, No. 2 | 1 Jan 2020
- Fast motion planning for a laboratory 3D gantry crane in the presence of obstaclesIFAC-PapersOnLine, Vol. 53, No. 2 | 1 Jan 2020
- Motion Planning and Feedback Control of Rolling BodiesIEEE Access, Vol. 8 | 1 Jan 2020
- 4D Trajectory Optimization of Commercial Flight for Green Civil AviationIEEE Access, Vol. 8 | 1 Jan 2020
- Efficient and More Accurate Representation of Solution Trajectories in Numerical Optimal ControlIEEE Control Systems Letters, Vol. 4, No. 1 | 1 Jan 2020
- Optimal control of nonlinear fed-batch process using direct transcription methodComputers & Chemical Engineering, Vol. 130 | 1 Nov 2019
- Periodic Trajectory Planning and Robust Output Zeroing Control for Underactuated Bipedal Robots with Predicted Disturbances2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Nov 2019
- Generalized Contact Constraints of Hybrid Trajectory optimization for Different Terrains and Analysis of Sensitivity to Randomized Initial Guesses2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Nov 2019
- Optimization based Trajectory Planning of Mobile Cable-Driven Parallel Robots2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Nov 2019
- Ankle Torque During Mid-Stance Does Not Lower Energy Requirements of Steady Gaits2019 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Nov 2019
- Algorithmic differentiation improves the computational efficiency of OpenSim-based trajectory optimization of human movementPLOS ONE, Vol. 14, No. 10 | 17 October 2019
- Mapping the energy flexibility potential of single buildings equipped with optimally-controlled heat pump, gas boilers and thermal storageSustainable Cities and Society, Vol. 50 | 1 Oct 2019
- Optimal motion planning of differential-drive mobile robots based on trapezoidal collocation methodJournal of Physics: Conference Series, Vol. 1341, No. 5 | 1 Oct 2019
- Robust Analysis of Biped Walking on Uneven Terrain Using Output Zeroing Control with Trajectory OptimizationIECON 2019 - 45th Annual Conference of the IEEE Industrial Electronics Society | 1 Oct 2019
- A Robustness Analysis of Inverse Optimal Control of Bipedal WalkingIEEE Robotics and Automation Letters, Vol. 4, No. 4 | 1 Oct 2019
- Hierarchical Linearization and Output Zeroing Control for Wheeled Robots2019 58th Annual Conference of the Society of Instrument and Control Engineers of Japan (SICE) | 1 Sep 2019
- Numerical Algorithms for Solving Boundary-Value Problems on Reduced Dimensional ManifoldsAIAA Aviation 2019 Forum | 14 June 2019
- Mapped Chebyshev pseudospectral methods for optimal trajectory planning of differentially flat hypersonic vehicle systemsAerospace Science and Technology, Vol. 89 | 1 Jun 2019
- Dynamic Walking on Slippery Surfaces : Demonstrating Stable Bipedal Gaits with Planned Ground Slippage2019 International Conference on Robotics and Automation (ICRA) | 1 May 2019
- Practical guide to solve the minimum-effort problem with geometric algorithms and B-Splines2019 International Conference on Robotics and Automation (ICRA) | 1 May 2019
- Contact-Implicit Trajectory Optimization Using Orthogonal CollocationIEEE Robotics and Automation Letters, Vol. 4, No. 2 | 1 Apr 2019
- DirCol5i: Trajectory Optimization for Problems With High-Order DerivativesJournal of Dynamic Systems, Measurement, and Control, Vol. 141, No. 3 | 8 November 2018
- Dynamic fluence map sequencing using piecewise linear leaf position functionsBiomedical Physics & Engineering Express, Vol. 5, No. 2 | 5 February 2019
- Biologically Inspired Dynamic Soaring Maneuvers for an Unmanned Air Vehicle Capable of Sweep MorphingInternational Journal of Aeronautical and Space Sciences, Vol. 19, No. 4 | 8 October 2018
- Data Assimilation Methods for Neuronal State and Parameter EstimationThe Journal of Mathematical Neuroscience, Vol. 8, No. 1 | 9 August 2018
- Efficient Trajectory Optimization for Robot Motion Planning2018 15th International Conference on Control, Automation, Robotics and Vision (ICARCV) | 1 Nov 2018
- Kinodynamic Comfort Trajectory Planning for Car-Like Robots2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Oct 2018
- Dual-Arm Coordinated Motion Planning and Compliance Control for Capturing Moving Objects with Large Momentum2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) | 1 Oct 2018
- A novel adaptive Gauss pseudospectral method for nonlinear optimal control of constrained hypersonic re‐entry vehicle problemInternational Journal of Adaptive Control and Signal Processing, Vol. 32, No. 9 | 6 July 2018
- Optimal morphing – augmented dynamic soaring maneuvers for unmanned air vehicle capable of span and sweep morphologiesAerospace Science and Technology, Vol. 79 | 1 Aug 2018
- Exploiting Sparse Structures in Nonlinear Model Predictive Control with Hypergraphs2018 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM) | 1 Jul 2018
- Trajectory Generation Method for Robotic Free-Floating Capture of a Non-cooperative, Tumbling TargetStardust Final Conference | 11 February 2018
- Trajectory Design of Re-entry Vehicles using combined Pigeon Inspired Optimization and Orthogonal Collocation methodIFAC-PapersOnLine, Vol. 51, No. 1 | 1 Jan 2018
View Options
View options
- Access via your Institution
- Questions about how to access this content? Contact SIAM at [email protected].