known_bugs.txt
来自「由matlab开发的hybrid系统的描述语言」· 文本 代码 · 共 17 行
TXT
17 行
Mathematical expressions:-------------------------HYSDEL implement a simple symbolic computation tool. The simple symbolic manipulator handles efficiently linear and affine expression but cannot detect that an expression is linear if it involves cancellation on non linear terms.Example:--------REAL x1,x2,x3;CONTINUOUS{ x1 = x1 + 2 * x2 + 3 * x3 + 4 x1; /* OK! = 5 * x1 + 2 x2 + 3 * x3 */ x2 = x1 + log(2) * x2 - log(2) * x2; /* OK! = x1 */ x3 = x1 + x2 * x3 - x3 * x2; /* ERROR! although linear, HYSDEL will*/ /* report an error */}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?