代码搜索:mimo matlab

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

代码结果 10,000
www.eeworm.com/read/145388/7125274

txt intro.txt

Tutorial on solving BVPs. Solving Boundary Value Problems for ODEs with BVP4C. Tutorial + Examples. This tutorial shows how to formulate, solve, and plot the solutions of boundary value prob
www.eeworm.com/read/274556/7126925

m e0257.m

s(1).teacher.name='Liu Ming'; s(1).teacher.number='010101'; s(1).teacher.course=['math '; 'MATLAB'; 'Maple ']; %构架数组s增加教师域,并赋值 s(1).teacher%查看s的域teacher s(1).teacher.course%查看s的域teacher的course信息
www.eeworm.com/read/206562/7129764

m ex3_23.m

X=input('Enter X:'); E=zeros(size(X)); F=eye(size(X)); n=1; while norm(F,1)>0 E=E+F; F=F*X/n; n=n+1; end E xpm(X) %调用MATLAB矩阵指数函数求矩阵指数
www.eeworm.com/read/464351/7164844

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/464351/7164847

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)
www.eeworm.com/read/464287/7166828

m a85.m

t = 0:0.1:20; %绘制函数曲线,生成一个图形Figure plot(t,t.*sin(t)) get(gcf, 'Color') %gcf函数返回当前Figure的句柄,get得到当前Figure的颜色属性 ans =0.8000 0.8000 0.8000 %MATLAB中的所有颜色以RGB的形式存储,[1,1,1]是白色,[0,0,0]是黑色 %此时,可以用
www.eeworm.com/read/464287/7166866

m b27.m

%这里有一幅图像,如图8-27所示,其动态范围较小,而且较暗,反映在直方图上,见图8-28, %就是其%直方图所占据的灰度值范围比较窄,而且集中在低灰度值一边。为了使图像更清晰,我们采用直方图 %均衡化的方法来增加图像灰度动态范围,增强对比度。在<mark>MATLAB</mark>中,可以直接调用J=histeq (I,n) %函数来完成这项工作,其中I是原始图像矩阵,J是变换后所得的图像矩阵;用户可以指定均衡化 ...
www.eeworm.com/read/464109/7169540

txt readme.txt

This CD-ROM contains the MATLAB and SIMULINK files for the exercises in Chapter 2 and for almost all the projects in Chapter 3 to 10 of the book: DYNAMIC SIMULATION OF ELECTRIC MACHINERY by Che
www.eeworm.com/read/463937/7172572

m zhihoujiaozheng.m

function varargout = zhihoujiaozheng(varargin) % ZHIHOUJIAOZHENG M-file for zhihoujiaozheng.fig % ZHIHOUJIAOZHENG, by itself, creates a new ZHIHOUJIAOZHENG or raises the existing % single
www.eeworm.com/read/463748/7175969

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,'*