代码搜索:伏安法
找到约 10,000 项符合「伏安法」的源代码
代码结果 10,000
www.eeworm.com/read/438930/7719124
frx 高斯消元法.frx
www.eeworm.com/read/438930/7719125
frm 高斯消元法.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "高斯消元法解方程"
ClientHeight = 8205
ClientLeft = 60
ClientTop = 345
ClientWidth = 9420
Icon
www.eeworm.com/read/438930/7719126
exe 高斯消元法.exe
www.eeworm.com/read/438930/7719128
vbp 高斯消元法.vbp
Type=Exe
Form=高斯消元法.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\system32\stdole2.tlb#OLE Automation
IconForm="Form1"
Startup="Form1"
HelpFile=""
Title="高斯消元法"
ExeName
www.eeworm.com/read/435233/7795168
m 牛顿拉夫逊法.m
%本程序的功能是用牛顿-拉夫逊法进行潮流计算
n=input('请输入节点数:n=');
nl=input('请输入支路数:nl=');
isb=input('请输入平衡母线节电号:isb=');
pr=input('请输入误差精度:pr=');
B1=input('请输入由支路参数形成的矩阵:B1=');%变压器侧为1,否则为0
B2=input('请输入各节点参数形成的矩阵:B2=
www.eeworm.com/read/198985/7897753
txt gauss消去法代码.txt
unit Gauss1Unit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DBCtrls, dbcgrids, Grids, DBGrids, dblookup;
type
TGauss
www.eeworm.com/read/297880/7990215
c newton迭代法.c
/* 标准文档模板 */
#include "Stdio.h"
#include "math.h"
float fun(float x)
{float y;
y=(x-1)*(x-1)*(2*x-1);
return y;}
float fund(float x)
{float z;
z=2*(x-1)*(2*x-1)+2*(x-1)*(x-1);
return z;}
www.eeworm.com/read/195741/8133061
bak 选择法排序.bak
clear
dime a(10)
n=10
for i=1 to 10
a(i)=int(rand()*100)
??a(i)
next
for i=1 to n-1
for j=i+1 to n
if a(i)>a(j)
t=a(i)
a(i)=a(j)
a(j)=t
endi
www.eeworm.com/read/195741/8133064
prg 选择法排序.prg
clear
dime a(10)
n=10
for i=1 to 10
a(i)=int(rand()*100)
??a(i)
next
for i=1 to n-1
for j=i+1 to n
if a(i)>a(j)
t=a(i)
a(i)=a(j)
a(j)=t
endi