代码搜索:图形交互
找到约 10,000 项符合「图形交互」的源代码
代码结果 10,000
www.eeworm.com/read/197646/7983417
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/397800/8021250
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/196814/8058783
m draw.m
function fig = draw()
% 手画光滑曲线图形界面
% 先用Range确定大致范围;然后用ginput用鼠标单击大致数据点;最后用Draw it画图。
% 本程序采用样条拟合
% By L. J. Hu, 2000
% This is the machine-generated representation of a Handle Graphics object
www.eeworm.com/read/145385/12729161
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/144891/12764233
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/144526/12786465
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/331661/12816341
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/244945/12829549
m draw.m
function fig = draw()
% 手画光滑曲线图形界面
% 先用Range确定大致范围;然后用ginput用鼠标单击大致数据点;最后用Draw it画图。
% 本程序采用样条拟合
% By L. J. Hu, 2000
% This is the machine-generated representation of a Handle Graphics object
www.eeworm.com/read/244765/12844637
txt 十四种java开发工具点评.txt
十四种Java开发工具点评 [ 日期:2005-12-03 ] [ 来自:本站原创 ]
图形界面的java开发工具
JDK
Borland 的JBuilder
JBuilder,JDeveloper,VisualAge for Java
jcreater.
常见的十五种Java开发工具的特点
1、JDK (Java Development Kit)Jav
www.eeworm.com/read/143198/12889715
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