📄 control.h
字号:
// Control.h: interface for the CControl class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CONTROL_H__686F4003_3598_4D83_8F79_5A20307AB55E__INCLUDED_)
#define AFX_CONTROL_H__686F4003_3598_4D83_8F79_5A20307AB55E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Dynamics.h"
class CControl
{
public:
CControl();
virtual ~CControl();
public:
//定常增益矩阵
CMatrix Kv;
//定常增益矩阵
CMatrix Kp;
//期望加速度
CMatrix DesignDdx;
//期望速度
CMatrix Designdx;
//期望位置
CMatrix Designx;
//指向动力学类的指针
CDynamics* lpDynamics;
public:
CMatrix ControlTorqueCL(CMatrix dx,CMatrix x);
};
#endif // !defined(AFX_CONTROL_H__686F4003_3598_4D83_8F79_5A20307AB55E__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -