代码搜索:图形交互
找到约 10,000 项符合「图形交互」的源代码
代码结果 10,000
www.eeworm.com/read/463564/7178307
m samp3_2.m
%Samp3_2
clear all %清除内存所有变量
close all %关闭所有打开的图形窗口
N=200;dt=4/N; %数据点数和采样间隔
for n=1:N %得到方波信号
if (n*dt>=2)
x(n)=0.8;
else
x(n)=-0.8;
end
end
figure(1)
www.eeworm.com/read/459103/7282674
m ex5_7.m
x=0:pi/100:2*pi;
y1=2*exp(-0.5*x);
y2=cos(4*pi*x);
plot(x,y1,x,y2)
title('x from 0 to 2{\pi}'); %加图形标题
xlabel('Variable X'); %加X轴说明
ylabel('Variable Y');
www.eeworm.com/read/458131/7303963
asm car.asm
DATA SEGMENT
INFO1 DB 0DH,0AH,'INPUT 1,2,OR 3:(1:bird,2:car,3:exit) $'
BUFA DB 200
DB ?
DB 200 DUP(0)
BUFB DB 200 DUP(?)
BIRD DB 76H,10,0,0 ;小鸟的字符图形表
www.eeworm.com/read/456359/7351135
txt matlab实用程序实例.txt
1-32是:图形应用篇
例1:三角函数曲线(1)
function shili01
h0=figure('toolbar','none',...
'position',[198 56 350 300],...
'name','实例01');
h1=axes('parent',h0,...
'visible','off');
x=-pi:0.05:pi;
www.eeworm.com/read/449733/7497776
asm car.asm
DATA SEGMENT
INFO1 DB 0DH,0AH,'INPUT 1,2,OR 3:(1:bird,2:car,3:exit) $'
BUFA DB 200
DB ?
DB 200 DUP(0)
BUFB DB 200 DUP(?)
BIRD DB 76H,10,0,0 ;小鸟的字符图形表
www.eeworm.com/read/447444/7551025
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/442029/7661134
m recurs_polygon3.m
function [z,A]=recurs_polygon3(z,A,n);
% 正多边形为构成元素的递归图形
% Example:
% [z,A]=recurs_polygon3(0,-pi/2,1);
if nargin==0;
z=0;A=-pi/2;n=1;
end
axis off;
nr=3; % 旋转对称次数
N=7; % 递归次数
www.eeworm.com/read/439653/7703966
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/438370/7732057
m exp2_4.m
close all
clc
clear
%定义时间范围
t=[0:pi/20:9*pi];
figure(1) %选择图像
plot(t,sin(t),'r:*')
grid on %在所画出的图形坐标中添加栅格,注意用在plot之后
grid off %删除栅格
figure(2)
plot(t,cos(t))
grid on
grid off
www.eeworm.com/read/437916/7739834
asm car.asm
DATA SEGMENT
INFO1 DB 0DH,0AH,'INPUT 1,2,OR 3:(1:bird,2:car,3:exit) $'
BUFA DB 200
DB ?
DB 200 DUP(0)
BUFB DB 200 DUP(?)
BIRD DB 76H,10,0,0 ;小鸟的字符图形表