代码搜索:matlab
找到约 10,000 项符合「matlab」的源代码
代码结果 10,000
www.eeworm.com/read/478147/6720739
txt 遗传算法.txt
gaotv5
核心函数:
(1)function [pop]=initializega(num,bounds,eevalFN,eevalOps,options)--初始种群的生成函数
【输出参数】
pop--生成的初始种群
【输入参数】
num--种群中的个体数目
bounds--代表变量的上下界的矩阵
eevalFN--适应度函数
eev
www.eeworm.com/read/477921/6726153
asv hw_hmdc.asv
%(7,4)分组码
clear all;
close all;
H=[1 1 1 0 1 0 0;0 1 1 1 0 1 0;1 1 0 1 0 0 1];
G=gen2par(H);%调用Matlab函数求与H对应的生成矩阵G
Msg=[0 0 0 0;0 0 0 1;0 0 1 0;0 0 1 1;0 1 0 0;0 1 0 1;0 1 1 0;0 1 1 1;1 0 0 0;1 0
www.eeworm.com/read/477921/6726157
m hw_hmdc.m
%(7,4)分组码
clear all;
close all;
H=[1 1 1 0 1 0 0;0 1 1 1 0 1 0;1 1 0 1 0 0 1];
G=gen2par(H);%调用Matlab函数求与H对应的生成矩阵G
Msg=[0 0 0 0;0 0 0 1;0 0 1 0;0 0 1 1;0 1 0 0;0 1 0 1;0 1 1 0;0 1 1 1;1 0 0 0;1 0
www.eeworm.com/read/477233/6740366
m 用 welch 平均估计试验数据的功率谱.m
%-------------------------------------------------------------------------
% exa1100701_pwelch.m, for example 11.7.1 and fig. 11.5.1(d)
% to estimate the PSD of x(n) by Welch average;
%------------
www.eeworm.com/read/477233/6740388
m exa090804_svd.m
%-----------------------------------------------------------------------
% exa090804_svd.m, for example 9.8.4
% to test svd.m;
% 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同,
% 但奇异值是一样的
%---------
www.eeworm.com/read/476799/6750940
txt readme.txt
在matlab中,设置当前的目录为工作目录,在命令行中输入fpextractdemo,即可运行程序。
www.eeworm.com/read/476889/6753863
txt 文件说明.txt
本文件夹包括《用c编写mex程序》文章的全部源代码和dll文件。
dll文件为matlab 7.0环境使用VC编译器编译。
希望他们能给你一个好的开始。
我也刚开始学习用c语言编写mex程序,欢迎你给我提供更好的资源和建议,谢谢!
许小可 于大连海事大学
xuxkboy@newmail.dlmu.edu.cn
www.eeworm.com/read/476907/6754328
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
clear
echo on
% first part
Sx1=[ones(1,32)];
Rx1=ifft(Sx1,32);
% second part
Sx2=[ones(1,16),zeros(1,224),ones(1,16)];
Rx2=ifft(Sx2,256)
www.eeworm.com/read/476907/6754439
m ip_05_07.m
% MATLAB script for Illustrated Problem 5.7.
clear
echo on
n0=.5*randn(100,1);
n1=.5*randn(100,1);
n2=.5*randn(100,1);
n3=.5*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x