代码搜索结果
找到约 10,000 项符合
B 的代码
b90.m
[X,Y,Z]=peaks;
[C,h]=contour3(X,Y,Z,15,'r*');
title('具有15条轮廓线的peaks函数');
xlabel 'x';
ylabel 'y';
zlabel 'z';
b77.m
t=0:pi/20:2*pi;
plot(t,sin(t));
xlabel('t=0 to 2pi');
ylabel('sin(t)');
title('0到2pi的正弦曲线');
text(pi/4,sin(pi/4),'\leftarrowsin(t)=0.707');
b61.m
RGB1=imread('pic005.jpg');
RGB2=imread('pic007.jpg');
I1=imread('rice.tif');
I2=imread('testpat1.tif');
subplot(2,2,1); %将图形窗口等分成4部分
subimage([0,500],[0,500],RGB1);
subplot(2,2,2);
subimage([
b67.m
RGB=imread('flowers.tif');
image(RGB)
b52.m
A1=imread('rice.tif');
A2=imread('testpat1.tif');
A=cat(2,A1,A2);
montage(A)
b89.m
x=[80 81 70 110];
labels={'一队' '二队' '三队' '四队'};
pie(x,labels)
b66.m
I=imread('rice.tif');
BW=dither(I);
imshow(BW);
b44.m
I=imread('eight.tif');
I1=imrotate(I,30,'bilinear','crop');
I2=imrotate(I,30,'nearest neighber');
imshow(I);
figure,imshow(I1);
figure,imshow(I2);
b72.m
[X,map]=imread('canoe.tif');
imwrite(X,map,'canoe.hdf','Compression','none', 'WriteMode','append')