📄 metablites.bas
字号:
Attribute VB_Name = "Variables"
'Define Global variables
Global Data_POINTS As Integer 'Data_POINTS = Degree of the polynomial + 1 = Dimension of the linear system
Global Matrix_A(1 To 10, 1 To 10) 'Max. Matrix dimensions 10x10 for the interface needs, but can be increased here
Global Triangular_A(1 To 10, 1 To 11) 'Triangularized Matrix A
Global Array_Yi(10) 'Array of the constants {yi}
Global Coefficients(10) 'Array of the Solutions - Coefficients of the polynomial {ci}
Global Solution_Problem As Boolean 'Determines whether the system was solved or not
'Change 10 to a greater value above, to increase the maximum number of data points
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -