代码搜索:mimo matlab
找到约 10,000 项符合「mimo matlab」的源代码
代码结果 10,000
www.eeworm.com/read/456354/7351308
m ip_05_07.m
% MATLAB script for Illustrated Problem 7, Chapter 5.
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',x2,y2,'*'
www.eeworm.com/read/456354/7351385
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
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);
% plotting c
www.eeworm.com/read/456193/7355007
m isvarname.m
function t = isvarname(s)
%ISVARNAME True for valid variable name.
% ISVARNAME(S) is true if S is a valid MATLAB variable name.
% A valid variable name is a character string of letters, digits
www.eeworm.com/read/455115/7377679
html othersites.html
Other highly recommended Computer Vision software sites
www.eeworm.com/read/454809/7382709
m 例11-14 .m
/*
* engdemo.c
*/
#include
#include
#include
//engine.h中包含有使用计算引擎时要用的函数声明
#include "engine.h"
#define BUFSIZE 256
int main()
{
Engine *ep;
mxA
www.eeworm.com/read/454809/7382744
m 例2-62.m
>> fn='2*exp(-x)*sin(x)'; %定义fn函数
>> xmin=fminbnd(fn,2,5) %在区间(2,5)之间寻找最小值
>> emin=5*pi/4-xmin %求最小值的误差
>> x=xmin; %令x为最小值点
>> ymin=eval(fn)
www.eeworm.com/read/454381/7392610
url matlab%d0%c5%ba%c5%b4%a6%c0%ed%cf%ea%bd%e2_0.url
[DEFAULT]
BASEURL=file://C:\WINNT\web\ftp.htt
[InternetShortcut]
URL=ftp://yanxuebbs:yanxuebbs@matwav.vicp.net/oldftp/document/matlab/matlab%D0%C5%BA%C5%B4%A6%C0%ED%CF%EA%BD%E2_0/
Modified=009F9C5
www.eeworm.com/read/451878/7454744
m speekersound.m
[f,p]=uigetfile('E:\MATLAB\R2006a\work\speeker\amintrain\*.wav');
file=f;
if f==0
return;
end;
[x,fs,bit]=wavread([p,f]);
sound(x,fs,bit);