搜索结果
找到约 265 项符合
switch-trees 的查询结果
技术资料 L9352B
Description
The L9352B is an integrated quad low-side power
switch to drive inductive loads like valves used in
ABS systems. Two of the four channels are
current regulators with current range from 0 mA to
2.25 A.
All channels are protected against fail functions.
They are monitored by a status outpu ...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
技术资料 Texas Instruments常用元件库
Texas Instruments常用元件库
TI Analog Timer Circuit.IntLib
TI Logic Flip-Flop.IntLib
TI Logic Gate 1.IntLib
TI Logic Gate 2.IntLib
TI Logic Latch.IntLib
TI Logic Switch.IntLib
TI Power Mgt Voltage Reference.IntLib
TI Power Mgt Voltage Regulator.IntLib
Texas Instruments Footprints.PcbLib等等
其他 TTP233D系列单通道触控芯片 台湾通泰永嘉微电优势代理
产品型号:TTP232-CA6&nbsp;
产品品牌:TONTEK/通泰
封装形式:SOT23-6
产品年份:新年份
联 系 人:许先生
联 系 QQ:1918885898&nbsp;
联系手机:18898582398
台湾通泰一级代理,原装现货最有优势!工程服务,技术支持,让您的生产高枕无忧!
量大价优,保证原装正品。您有量,我有价!
...
源码 Joystick.c
用于switch摇杆操作的源码,.c跟.h
书籍 Switch-Mode Power Supply Simulation
Thepredecessorvolumeofthisbookwaspublishedin1996.Intheyears
since then, some things have changed and some have not.
Two of the things that have not changed are the desire for better
models and faster simulations. I performed the original simulations on
my “hyperfast” 133-MHz computer! At the time, ...
书籍 interpretable-machine-learning
Machinelearninghasgreatpotentialforimprovingproducts,processesandresearch.Butcomputers
usually do not explain their predictions which is a barrier to the adoption of machine learning.
This book is about making machine learning models and their decisions interpretable.
After exploring the concepts of ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...