搜索结果

找到约 1,827 项符合 J-K触发器 的查询结果

软件 用74LS74双D触发器构成的异步二进制加法计数器

用74LS74双D触发器构成的异步二进制加法计数器的Multisim仿真。
https://www.eeworm.com/dl/512540.html
下载: 5
查看: 1087

电路图 功放电路功放j集成块电路资料

功放j集成块电路资料  常用的功放集成块
https://www.eeworm.com/dl/512947.html
下载: 2
查看: 43

源码 OMP和K-SVD

K-SVD做图像字典分析,OMP是重建算法
https://www.eeworm.com/dl/514327.html
下载: 1
查看: 3

源码 c语言算法排序

1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){   ...
https://www.eeworm.com/dl/514507.html
下载: 1
查看: 15

源码 K-means聚类算法Hadoop分布式实现

Hadoop下的K-means的Java实现,使用eclipse。
https://www.eeworm.com/dl/515044.html
下载: 1
查看: 36

软件 道理特分解法

#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size= ...
https://www.eeworm.com/dl/517487.html
下载: 2
查看: 30

其他 有限差分法

function [alpha,N,U]=youxianchafen2(r1,r2,up,under,num,deta)      %[alpha,N,U]=youxianchafen2(a,r1,r2,up,under,num,deta)   %该函数用有限差分法求解有两种介质的正方形区域的二维拉普拉斯方程的数值解   %函数返回迭代因子、迭代次数 ...
https://www.eeworm.com/dl/517754.html
下载: 3
查看: 274

源码 数据挖掘-聚类-K-means算法Java实现

K-Means算法是最古老也是应用最广泛的聚类算法,它使用质心定义原型,质心是一组点的均值,通常该算法用于n维连续空间中的对象。 K-Means算法流程 step1:选择K个点作为初始质心 step2:repeat                将每个点指派到最近的质心,形成K个簇   &nb ...
https://www.eeworm.com/dl/518446.html
下载: 1
查看: 28

源码 k均值算法的matlab源程序

用于k均值算法的matlab源程序,非常实用,简单易懂
https://www.eeworm.com/dl/518802.html
下载: 1
查看: 29

源码 成绩查询系统

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520134.html
查看: 56