代码搜索:mimo matlab

找到约 10,000 项符合「mimo matlab」的源代码

代码结果 10,000
www.eeworm.com/read/241276/13159091

boost readme.boost

A collection of Matlab scripts to boost a Matlab neural network Requires Matlab Neural Network toolbox. Script P450bskel.m reads data files (not supplied) and the calls other scripts to perform boost
www.eeworm.com/read/241261/13160242

m s_studentt.m

% this script familiarizes the user with some basic properties of the % Student t distribution, see "Risk and Asset Allocation"-Springer (2005), by A. Meucci % Section 1.3.4 clear; clc; close all
www.eeworm.com/read/241225/13163154

txt readme.txt

免费天地的计算机书籍配套磁盘服务 ================================ 本文件是从“免费天地”站点下载的。 (http://www.nease.net/~free) --------------------------------------------------- 与本磁盘配套的书籍的所有权益归原书作者和出版商所有。 我们提供配套磁盘只是为了
www.eeworm.com/read/241225/13163406

txt readme.txt

免费天地的计算机书籍配套磁盘服务 ================================ 本文件是从“免费天地”站点下载的。 (http://www.nease.net/~free) --------------------------------------------------- 与本磁盘配套的书籍的所有权益归原书作者和出版商所有。 我们提供配套磁盘只是为了
www.eeworm.com/read/326067/13168288

m contents.m

% File Exchange Toolbox % % File Exchange Downloads % % checkforUpdates - Check updates for all MATLAB Central File Exchange downloads. % deletefile - Delete a download directory. % fxdownl
www.eeworm.com/read/240973/13183495

txt matlab遗传算法工具箱函数及实例讲解(转引).txt

matlab遗传算法工具箱函数及实例讲解(转引) [ 作者:佚名 转贴自:本站原创 点击数:1055 更新时间:2005-4-11 文章录入:lymcentor ] gaotv5 核心函数: (1)function [pop]=initializega(num,bounds,eevalFN,eevalOps,options)--初始种群的生成函数
www.eeworm.com/read/139048/13191410

c engwindemo.c

/* engwindemo.c * This is a simple program that illustrates how to call the MATLAB * Engine functions from a C program for windows * Copyright (c) 1996-1998 by The MathWorks, Inc. * All Rights
www.eeworm.com/read/139008/13195385

c engwindemo.c

/* engwindemo.c * This is a simple program that illustrates how to call the MATLAB * Engine functions from a C program for windows * Copyright (c) 1996-1998 by The MathWorks, Inc. * All Rights
www.eeworm.com/read/240795/13197343

m p0302.m

I=imread('cameraman.tif'); % MATLAB自带的图像,如图3-3所示 imshow(I); clear;close all I=imread('cameraman.tif'); imshow(I); I=im2double(I); T=dctmtx(8); B=blkproc(I,[8 8], 'P1*x*P2',T,T'); Ma
www.eeworm.com/read/240795/13197351

m p0304.m

I=imread('pout.tif'); % 读取MATLAB自带的potu.tif图像 imshow(I); figure,imhist(I); [J,T]=histeq(I,64); % 图像灰度扩展到0~255,但是只有64个灰度级 figure,imshow(J); figure,imhist(J); figure,plot((0:255)/255,T)