搜索结果
找到约 715 项符合
Max-Plus 的查询结果
VHDL/FPGA/Verilog 讲述fpga的幻灯片
讲述fpga的幻灯片,很有用的讲解。主要涉及到fpga-plus方面的知识。
其他 Please read this document before attempting to compile and run the libraries and applications! The p
Please read this document before attempting to compile and run the libraries and applications! The projects
must be compiled in a particular order. Standard support questions are about compiler and/or linker errors
that are generated when users try to compile the projects in the wrong order. Other i ...
人工智能/神经网络 function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent fo
function [U,center,result,w,obj_fcn]= fenlei(data)
[data_n,in_n] = size(data)
m= 2 % Exponent for U
max_iter = 100 % Max. iteration
min_impro =1e-5 % Min. improvement
c=3
[center, U, obj_fcn] = fcm(data, c)
for i=1:max_iter
if F(U)>0.98
break
else
w_new=eye(in_n,in_n)
center1=sum(cent ...
数学计算 //奇异值分解法求广义逆 //本函数返回值小于0表示在奇异值分解过程, //中迭代值超过了60次还未满足精度要求. //返回值大于0表示正常返回。 //a-长度为m*n的数组
//奇异值分解法求广义逆
//本函数返回值小于0表示在奇异值分解过程,
//中迭代值超过了60次还未满足精度要求.
//返回值大于0表示正常返回。
//a-长度为m*n的数组,返回时其对角线依次给出奇异值,其余元素为0
//m-矩阵的行数
//n-矩阵的列数
//aa-长度为n*m的数组,返回式存放A的广义逆
//eps-精度要求
//u-长度为m*m的数组 ...
matlab例程 MATLAB是一个非常好的用于测量
MATLAB是一个非常好的用于测量,分析和可视化的数据,控制仪器,并建立测试系统。安捷伦信号和频谱分析仪可让您分析失真,虚假的,相位噪声,用于2G到4G无线通信测量。这种Matlab下开发的高级数据可视化(ADV)的应用软件,扩展了安捷伦信号和频谱分析仪的可视化功能,提供了四个不同的显示格式:Analog Advanced, Analog P ...
汇编语言 selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0,
selects the mux channel and configures the MAX197 for
second write pulse, written with ACQMOD = 0, termi-
either unipolar or bipolar input range. A write pulse (WR
nates acquisition and starts conversion on WR°Os risin
+ CS) can either start an acquisition interval or initiate a
edge (Figure 6). Ho ...
汇编语言 selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0,
selects the mux channel and configures the MAX197 for
second write pulse, written with ACQMOD = 0, termi-
either unipolar or bipolar input range. A write pulse (WR
nates acquisition and starts conversion on WR°Os risin
+ CS) can either start an acquisition interval or initiate a
edge (Figure 6). Ho ...
汇编语言 selects the mux channel and configures the MAX197 for second write pulse, written with ACQMOD = 0,
selects the mux channel and configures the MAX197 for
second write pulse, written with ACQMOD = 0, termi-
either unipolar or bipolar input range. A write pulse (WR
nates acquisition and starts conversion on WR°Os risin
is restarted.
The ACQMOD bit in the input control byte offer+ CS) can either sta ...
其他 //使用gray code的解法 #include <iostream> #include <cmath> using namespace std #define
//使用gray code的解法
#include <iostream>
#include <cmath>
using namespace std
#define ZERO 0
#define ONE 1
#define ODD 1
#define EVEN 0
#define RIGHT 1
#define LEFT 0
#define MAX 10
书籍源码 计算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,
计算全息close all clc clear
A=zeros(64)
A(15:20,20:40)=1 A(15:50,20:25)=1
A(45:50,20:40)=1 A(30:34,20:35)=1
% ppp=exp(rand(64)*pi*2*i) A=A.*ppp
% Author s email: zjliu2001@163.com
figure imshow(abs(A),[])
Fa=fft2(fftshift(A)) Fs=fftshift(Fa)
Am=abs(Fs) % amplitude
Ph=angle(Fs) % phase
s=11 ...