搜索结果
找到约 9 项符合
subplot 的查询结果
matlab例程 用subplot分别在不同的坐标系下作出下列四条曲线
用subplot分别在不同的坐标系下作出下列四条曲线,为每幅图形加上标题
其他 先确定二分法的上下两个端点值,这个在figure的subplot(121)中确定。 然后进行循环求解。
先确定二分法的上下两个端点值,这个在figure的subplot(121)中确定。
然后进行循环求解。
文章/文档 在命令窗输入如下内容就得到图形了: [t,x]=ode45( godhua ,[0,10],[0,0,0,1]) subplot(131) plot(t,x(:,4)) xlabel( t )
在命令窗输入如下内容就得到图形了:
[t,x]=ode45( godhua ,[0,10],[0,0,0,1])
subplot(131) plot(t,x(:,4)) xlabel( t ) ylabel( y )
subplot(132) plot(t,x(:,1)) xlabel( t ) ylabel( v )
subplot(133) plot(t,x(:,2)) xlabel( t ) ylabel( \theta )
matlab例程 y3k=fft(u,(m+n-2)/4) i=1:(m+n-2)/4 subplot(5,2,9) stem(i,u) title( 滤波后上采样 ) k=1:(m+n-2
y3k=fft(u,(m+n-2)/4)
i=1:(m+n-2)/4
subplot(5,2,9) stem(i,u)
title( 滤波后上采样 )
k=1:(m+n-2)/4
subplot(5,2,10) stem(k,y3k)
title( 上采样频谱 )
xlabel( k ) ylabel( y3k )
matlab例程 暂时只支持jpeg2000支持的 cdf97 和spline53 可以这样来测试: x=imread( E:studyjpeg2000imageslena.tif ) % see the de
暂时只支持jpeg2000支持的 cdf97 和spline53
可以这样来测试:
x=imread( E:\study\jpeg2000\images\lena.tif )
% see the decomposition coefficients
y=wavelift(x, 1, spl53 ) using spline 5/3 wavelet
figure subplot(1,2,1) imshow(x) subplot(1,2,2) imshow(mat2gray(y))
% see the reconstruction precision
y ...
仿真技术 matlab-均值滤波.中值滤波
I=imread('fig1.jpg');%从D盘名为myimages的文件夹中读取。格式为jpg的图像文件chost
J=imnoise(I,'salt & pepper',0.02);%给图像加入均值为0,方差为0.02的淑盐噪声
subplot(2,4,1);
imshow(I);
title('原始图像');
subplot(2,4,2);
imshow(J);
title('加入椒盐噪声之后的图像');
%h=ones(3,3)/ ...
源码 基于MATLAB的JPEG图像压缩编码
简单的实现JPEG图像压缩编码方法一
clear all;
RGB=imread('C:\Users\Administrator\Desktop\123.bmp');%读取内存中bmp格式的彩色图像
I=rgb2gray(RGB);%将彩色图像转换为灰度图像
I1=im2double(I);%将图像变换为双精度格式
T=dctmtx(8);%处理后返回一个8*8阶的DCT矩阵
B1=blkproc(I1,[8
8],'P1*x*P2', ...
源码 重力异常正演MATLAB程序
%球体
close all;
G=6.67e-11;
R=2;%球体半径
p=4.0;%密度
D=10.0;%深度
M=(4/3)*pi*R^3*p;%质量
x=-20:1:20;
g=G*M*D./((x.^2+D^2).^(3/2));
Vxz=-3*G*M*D.*x./((x.^2+D^2).^(5/2));
Vzz=G*M.*(2*D^2-x.^2)./((x.^2+D^2).^(5/2));
Vzzz=3*G*M.*(2*D^2-3.*x.^2)./((x.^2+D^2).^(7/2));
subplot(2,2,1)
plot(x,g,'k-');
xl ...
其他 ketang
x=[1,2,0,-1,3,2];h=[1,-1,1];
y1=x*h(1);
y2=x*h(2);
y3=x*h(3);
Y1=[0,0,y1];
Y2=[0,y2,0];
Y3=[y3,0,0];
y=Y1+Y2+Y3;
L=-2:1:5;
figure(1);
subplot(211);stem(L,y,'*');
xlabel('L');ylabel('y');title('(1)');
X=x.';X=X';
r1=X*y(1);r2=X*y(2);r3=X*y(3);r4=X*y(4);
r5=X*y(5);r6=X*y(6);r7=X*y(7);r8=X*y(8);
R1=[0, ...