代码搜索:MATlab
找到约 10,000 项符合「MATlab」的源代码
代码结果 10,000
www.eeworm.com/read/225124/14555250
ppt matlab_maths.ppt
www.eeworm.com/read/225112/14555528
pdf introduction to matlab (book).pdf
www.eeworm.com/read/224865/14565757
doc matlab点点滴.doc
www.eeworm.com/read/224385/14594957
pdf vc-and-matlab.pdf
www.eeworm.com/read/223869/14615145
pdf chapman_matlab.pdf
www.eeworm.com/read/223076/14660803
m matlab_project.m
% This MATLAB code is a basic simulator for a digital communication system
% It contains Pulse Position Modulation (PPM) and the students are required
% to include On-Off Keying (OOK), and Binary Ph
www.eeworm.com/read/222516/14686982
txt sor-matlab.txt
SOR迭代法的Matlab程序
function [x]=SOR_iterative(A,b)
% 用SOR迭代求解线性方程组,矩阵A是方阵
x0=zeros(1,length(b)); % 赋初值
tol=10^(-2); % 给定误差界
N=1000; % 给定最大迭代次数
[n,n]=size(A); % 确定矩阵A的阶
w=1;
www.eeworm.com/read/222432/14691089
txt matlab1.txt
matlab中遗传算法的例子
y=1/x:
%N=input('设定隐含层神经元个数:\n');
%maxecho=input('最大训练回合数');
%网络初始化
N=3;%可以自己设定
maxecho=1000;
h=0.4;%学习速率
p=1:1:100;
t=1./p;
inw=randn(N,2);%输入-隐含权值矩阵,单输入并加上了偏置一列