代码搜索:伏安法
找到约 10,000 项符合「伏安法」的源代码
代码结果 10,000
www.eeworm.com/read/457837/7317208
cpp matrixrank.cpp
// MatrixRank.cpp 用全选主元高斯消元法求一般矩阵的秩
//#include //文件流头文件
#include //输入输出流
#include "Matrix.h" //矩阵类及相关函数等的定义
using namespace std; //名字空间
void main() // 定义控制台应用程序的入口点
www.eeworm.com/read/456942/7336167
cpp algo8-1.cpp
// algo8-1.cpp 边界标识法。实现算法8.1的程序
#include"c1.h"
#include"c8-1.h"
#define MAX 1000 // 可利用空间的大小(以WORD的字节数为单位)
#define e 10 // 块的最小尺寸-1(以WORD的字节数为单位)
Space AllocBoundTag(Space &pav,int n) //
www.eeworm.com/read/454932/7381502
cpp algo8-1.cpp
// algo8-1.cpp 边界标识法。实现算法8.1的程序
#include"c1.h"
#include"c8-1.h"
#define MAX 1000 // 可利用空间的大小(以WORD的字节数为单位)
#define e 10 // 块的最小尺寸-1(以WORD的字节数为单位)
Space AllocBoundTag(Space &pav,int n) //
www.eeworm.com/read/449868/7495280
asv gauss.asv
function s=Gauss(a,b,x0,eps,N,)
% Gauss-Seidel迭代法解线性方程组
% a为系数矩阵,b为方程组ax=b的右端值,x0为初值
if nargin==4
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/449868/7495284
m gauss.m
function [s,i]=Gauss(a,b,x0,eps,N,i)
% Gauss-Seidel迭代法解线性方程组
% a为系数矩阵,b为方程组ax=b的右端值,x0为初值
if nargin==5
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/444887/7603770
h socalgorithm.h
#ifndef _socalgorithm_h
#define _socalgorithm_h
//定义额定容量C3
#define C3 27
//定义间隔时间DELTAT
#define DELTAT 0.1/3600 //100ms
/*开路电压法计算SOC,soc=f(v,t,l)
即soc为电压、温度、以及老化程度的函数,这里暂时不考虑老化因素*/
float O
www.eeworm.com/read/444759/7607536
m 4-26.m
%例程4-26 基于切比雪夫一致逼近法设计FIR数字低通滤波器
clear all;
f=[0 0.6 0.7 1]; %给定频率轴分点
A=[1 1 0 0]; %给定在这些频率分点上理想的幅频响应
weigh=[1 10]; %给定在这些频率分点上的加权
b=
www.eeworm.com/read/444277/7614620
c algo8-1.c
/* algo8-1.c 边界标识法。实现算法8.1的程序 */
#include"c1.h"
#include"c8-1.h"
#define MAX 1000 /* 可利用空间的大小(以WORD的字节数为单位) */
#define e 10 /* 块的最小尺寸-1(以WORD的字节数为单位) */
Space AllocBoundTag(Space *pav,int
www.eeworm.com/read/444277/7614623
h c8-1.h
/* c8-1.h 边界标识法可利用空间表的结点结构 */
/* head和foot分别是可利用空间表中结点的第一个字和最后一个字(WORD) */
typedef struct WORD /* 字类型 */
{
union
{
struct WORD *llink; /* 头部域,指向前驱结点 */
struct WORD *uplink
www.eeworm.com/read/442220/7656802
c algo8-1.c
/* algo8-1.c 边界标识法。实现算法8.1的程序 */
#include"c1.h"
#include"c8-1.h"
#define MAX 1000 /* 可利用空间的大小(以WORD的字节数为单位) */
#define e 10 /* 块的最小尺寸-1(以WORD的字节数为单位) */
Space AllocBoundTag(Space *pav,int