代码搜索:图形交互
找到约 10,000 项符合「图形交互」的源代码
代码结果 10,000
www.eeworm.com/read/334396/12606609
m ex10_4.m
clf; %清除图形窗口中的内容
x=linspace(0,2*pi,20);
y=sin(x);
axes('Position',[0.2,0.2,0.2,0.7],'GridLineStyle','-.');
plot(y,x);
grid on
axes('Position',[0.4,0.2,0.5,0.5]);
t=0:pi/1
www.eeworm.com/read/237598/13942808
m ex10_4.m
clf; %清除图形窗口中的内容
x=linspace(0,2*pi,20);
y=sin(x);
axes('Position',[0.2,0.2,0.2,0.7],'GridLineStyle','-.');
plot(y,x);
grid on
axes('Position',[0.4,0.2,0.5,0.5]);
t=0:pi/1
www.eeworm.com/read/237027/13980649
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/134340/13995095
c al13_1.c
/*案例代码文件名:AL13_1.C*/
/*功能:图形模式的初始化*/
#include “graphics.h” /*包含graphics.h*/
main()
{int driver, mode;
driver = CGA; /*显示器为CGA */
mode = CGAC0
www.eeworm.com/read/236594/14009539
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/133875/14019950
m exm10222_1.m
%exm10222_1.m
clf reset;shg
H_mesh=mesh(peaks(20))
H_grand_parent=get(get(H_mesh,'Parent'),'Parent')
disp(' 图柄 轴柄')
disp([gcf gca]) %显示当前图形窗和轴的句柄
www.eeworm.com/read/235907/14044927
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/235903/14046168
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/235901/14046908
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/204090/15344728
m exp2_6.m
%图形分割命令的使用
clear
close all
clc
t=[0:pi/20:5*pi];
figure(1)
subplot(321)
plot(t,sin(t))
axis([0 16 -1.5 1.5])
xlabel('t(deg)')
ylabel('magnitude')
grid on
title('sin(t)')
subplot(322)
plo