代码搜索:mimo matlab
找到约 10,000 项符合「mimo matlab」的源代码
代码结果 10,000
www.eeworm.com/read/490407/6455896
m exp2_8.m
echo off % 不显示程序内容
clear
clc
a=4;
b=6
disp('暂停,请按任意键继续') % disp指令可以用来显示字符
pause % 暂停,直到用户按任意键
echo on
% 显示程序内容,注意matlab默认是不显示
c=a+b
% 暂时把控制权交给键盘(在命令窗口中出现k提示符),
% 输入return,回车后退出,继续执行下面的语
www.eeworm.com/read/490443/6456607
h parseargs.h
// header for local function parseargs
// source file is G:\MATLABR11\toolbox\matlab\specgraph\isonormals.m
www.eeworm.com/read/490443/6456628
cpp isovalue.cpp
#include "matlib.h"
#pragma hdrstop
#include "isovalue.h"
Mm isovalue(Mm data) {
begin_scope
data.setname("data");
dMm(val); dMm(r); dMm(len); dMm(n); dMm(x); dM
www.eeworm.com/read/489641/6467899
dat bookinfo.dat
[General Information]
书名=Visual C++/MATLAB图像处理与识别实用案例精选
作者=
页数=420
SS号=0
出版日期=
www.eeworm.com/read/489511/6471969
txt ahpcode.txt
'层次分析法的matlab程序'
disp('请输入判断矩阵A(n阶)');
A=input('A=');
[n,n]=size(A);
x=ones(n,100);
y=ones(n,100);
m=zeros(1,100);
m(1)=max(x(:,1));
y(:,1)=x(:,1);
x(:,2)=A*y(:,1);
m(2)=max(x(:,2));
y(:
www.eeworm.com/read/489524/6472661
m fig2_2.m
% This program can be used tore-produce Figure 2.2 of text
clear all
close all
xg = linspace(-6,6,1500); % randowm variable between -4 and 4
xr = linspace(0,6,1500); % randowm variable between 0 a
www.eeworm.com/read/488462/6487317
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);
% pl
www.eeworm.com/read/488466/6487408
m ip_05_07.m
% MATLAB script for Illustrated Problem 5.7.
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/488103/6496690
m exa110701_pwelch.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/488103/6496729
m exa090804_svd.m
%-----------------------------------------------------------------------
% exa090804_svd.m, for example 9.8.4
% to test svd.m;
% 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同,
% 但奇异值是一样的
%---------