⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmlinsolv.frm

📁 《MATLAB实用指南》系列丛书DE源代码
💻 FRM
📖 第 1 页 / 共 2 页
字号:
VERSION 5.00
Begin VB.Form frmLinSolv 
   Caption         =   "求解线性方程组"
   ClientHeight    =   7065
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6270
   LinkTopic       =   "Form1"
   ScaleHeight     =   7065
   ScaleWidth      =   6270
   StartUpPosition =   3  '窗口缺省
   Begin VB.TextBox txtPrec 
      Height          =   375
      Left            =   5160
      TabIndex        =   45
      Text            =   "0.0001"
      Top             =   4920
      Width           =   855
   End
   Begin VB.Frame fmeResult 
      Caption         =   "线性方程组的解"
      Height          =   855
      Left            =   240
      TabIndex        =   37
      Top             =   3720
      Width           =   5775
      Begin VB.TextBox txtResult 
         Height          =   375
         Index           =   1
         Left            =   2520
         TabIndex        =   40
         Top             =   240
         Width           =   1095
      End
      Begin VB.TextBox txtResult 
         Height          =   375
         Index           =   2
         Left            =   4440
         TabIndex        =   39
         Top             =   240
         Width           =   1095
      End
      Begin VB.TextBox txtResult 
         Height          =   375
         Index           =   0
         Left            =   720
         TabIndex        =   38
         Top             =   240
         Width           =   1095
      End
      Begin VB.Label lblResult 
         Caption         =   "x2"
         Height          =   255
         Index           =   2
         Left            =   2040
         TabIndex        =   43
         Top             =   360
         Width           =   255
      End
      Begin VB.Label lblResult 
         Caption         =   "x3"
         Height          =   255
         Index           =   1
         Left            =   3960
         TabIndex        =   42
         Top             =   360
         Width           =   255
      End
      Begin VB.Label lblResult 
         Caption         =   "x1"
         Height          =   255
         Index           =   0
         Left            =   360
         TabIndex        =   41
         Top             =   360
         Width           =   255
      End
   End
   Begin VB.CommandButton cmdCancel 
      Caption         =   "取  消"
      Height          =   375
      Left            =   4920
      TabIndex        =   23
      Top             =   6480
      Width           =   1095
   End
   Begin VB.CommandButton cmdCompute 
      Caption         =   "计  算"
      Height          =   375
      Left            =   4920
      TabIndex        =   22
      Top             =   5880
      Width           =   1095
   End
   Begin VB.Frame fmeSolver 
      Caption         =   "选择求解算法"
      Height          =   2055
      Left            =   240
      TabIndex        =   17
      Top             =   4800
      Width           =   3615
      Begin VB.TextBox txtWeight 
         Enabled         =   0   'False
         Height          =   270
         Left            =   1560
         TabIndex        =   21
         Text            =   "1"
         Top             =   1560
         Width           =   855
      End
      Begin VB.OptionButton optSOR 
         Caption         =   "SOR(超松弛)迭代法"
         Height          =   255
         Left            =   240
         TabIndex        =   20
         Top             =   1080
         Width           =   2055
      End
      Begin VB.OptionButton optGauss 
         Caption         =   "Gauss-Seidel迭代法"
         Height          =   255
         Left            =   240
         TabIndex        =   19
         Top             =   720
         Width           =   2895
      End
      Begin VB.OptionButton optJacobi 
         Caption         =   "Jacobi迭代法"
         Height          =   255
         Left            =   240
         TabIndex        =   18
         Top             =   360
         Width           =   2775
      End
      Begin VB.Label lblWeight 
         Caption         =   "松弛因子"
         Enabled         =   0   'False
         Height          =   255
         Left            =   600
         TabIndex        =   36
         Top             =   1560
         Width           =   735
      End
   End
   Begin VB.Frame fmeInit 
      Caption         =   "初值"
      Height          =   855
      Left            =   240
      TabIndex        =   13
      Top             =   2640
      Width           =   5775
      Begin VB.TextBox txtInit 
         Height          =   375
         Index           =   1
         Left            =   2520
         TabIndex        =   16
         Text            =   "0"
         Top             =   240
         Width           =   1095
      End
      Begin VB.TextBox txtInit 
         Height          =   375
         Index           =   2
         Left            =   4440
         TabIndex        =   15
         Text            =   "0"
         Top             =   240
         Width           =   1095
      End
      Begin VB.TextBox txtInit 
         Height          =   375
         Index           =   0
         Left            =   720
         TabIndex        =   14
         Text            =   "0"
         Top             =   240
         Width           =   1095
      End
      Begin VB.Label lblInit 
         Caption         =   "x3"
         Height          =   255
         Index           =   2
         Left            =   3960
         TabIndex        =   35
         Top             =   360
         Width           =   255
      End
      Begin VB.Label lblInit 
         Caption         =   "x2"
         Height          =   255
         Index           =   1
         Left            =   2040
         TabIndex        =   34
         Top             =   360
         Width           =   255
      End
      Begin VB.Label lblInit 
         Caption         =   "x1"
         Height          =   255
         Index           =   0
         Left            =   360
         TabIndex        =   33
         Top             =   360
         Width           =   255
      End
   End
   Begin VB.Frame fmeFun 
      Caption         =   "线性方程组"
      Height          =   2175
      Left            =   240
      TabIndex        =   0
      Top             =   240
      Width           =   5775
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   1
         Left            =   1800
         TabIndex        =   12
         Text            =   "-2"
         Top             =   360
         Width           =   855
      End
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   2
         Left            =   3240
         TabIndex        =   11
         Text            =   "-1"
         Top             =   360
         Width           =   855
      End
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   3
         Left            =   4560
         TabIndex        =   10
         Text            =   "3"
         Top             =   360
         Width           =   855
      End
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   4
         Left            =   360
         TabIndex        =   9
         Text            =   "-2"
         Top             =   960
         Width           =   855
      End
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   5
         Left            =   1800
         TabIndex        =   8
         Text            =   "10"
         Top             =   960
         Width           =   855
      End
      Begin VB.TextBox txtFun 
         Height          =   375
         Index           =   6

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -