搜索结果
找到约 3,261 项符合
f.m 的查询结果
按分类筛选
- 全部分类
- 技术资料 (9)
- matlab例程 (7)
- 数据结构 (7)
- 单片机编程 (6)
- 数学计算 (5)
- 人工智能/神经网络 (4)
- 模拟电子 (3)
- 单片机开发 (3)
- 其他 (3)
- 源码 (3)
- 电源技术 (2)
- Java编程 (2)
- 其他书籍 (2)
- 书籍源码 (2)
- 通讯/手机编程 (2)
- 编译器/解释器 (2)
- DSP编程 (1)
- 学术论文 (1)
- 技术书籍 (1)
- 技术教程 (1)
- autocad教程 (1)
- C/C++语言编程 (1)
- 可编程逻辑 (1)
- 工控技术 (1)
- 电子政务应用 (1)
- 文件格式 (1)
- 软件设计/软件工程 (1)
- 汇编语言 (1)
- 系统设计方案 (1)
- 数值算法/人工智能 (1)
- VHDL/FPGA/Verilog (1)
- 微处理器开发 (1)
- FlashMX/Flex源码 (1)
- Linux/Unix编程 (1)
- Internet/网络编程 (1)
- 文章/文档 (1)
- VC书籍 (1)
- Linux/uClinux/Unix编程 (1)
- 习题答案 (1)
- VIP专区 (1)
数值算法/人工智能 利用奇异值分解求一般m*n阶实矩阵的广义逆矩阵。
利用奇异值分解求一般m*n阶实矩阵的广义逆矩阵。
matlab例程 两个正态总体方差的检验(F检验)的matlab程序
两个正态总体方差的检验(F检验)的matlab程序
3G开发 This m file plots the time and frequency domain of UWB PPM(pulse position modulated) waveforms(monoc
This m file plots the time and frequency domain of UWB PPM(pulse position modulated) waveforms(monocycles and doublets) with different pulse recurring frequency (PRF)and information rates.
3G开发 M-file uses random data which BPSK modulates a carrier to configure a BPSK UWB transmitter. The rece
M-file uses random data which BPSK modulates a carrier to configure a BPSK UWB transmitter. The receiver demodulates the BPSK UWB carrier and the data is recovered.
3G开发 This m file models a UWB system using BPSK with the fifth order derivative of the gaussian pulse wit
This m file models a UWB system using BPSK with the fifth order derivative of the gaussian pulse with correlation receiver and intgrator.
3G开发 This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low
This m file models a DPSK UWB system using a delay in one leg of the mixer, correlation receiver low pass filter combination requiring no template for synching. Various waveforms are displayed throughout the system to allow the user to observe operation of the system.
人工智能/神经网络 yj1.m:简单一元函数优化实例
yj1.m:简单一元函数优化实例,利用遗传算法计算下面函数的最大值
包括了遗传算法的12个经典例题,适合大家学习参考。
数学计算 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
数学计算 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
其他 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1