代码搜索:图形交互
找到约 10,000 项符合「图形交互」的源代码
代码结果 10,000
www.eeworm.com/read/201668/15398925
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/201358/15409559
m paint.m
%图形绘制
% cla;
% for i=1:city_n
% plot(pos(i,1),pos(i,2),'o');hold on;
% end
%
% for i=1:city_n-1
% a=best_individual(i);
% b=best_individual(i+1);
% line([pos(a,1),pos(b,1)]
www.eeworm.com/read/201353/15409584
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/110952/15521898
htm map.htm
图形热点链接
body, a, table, div, span, td, th, input, select{font:9pt;font-fam
www.eeworm.com/read/109556/15554329
cpp lab2_3.cpp
#include
const float PI = 3.1416;
void main()
{
int iType;
float radius, a, b, area;
cout > iType;
switch(iType)
{
case 1:
www.eeworm.com/read/105589/15664799
cnx gui_x11.cnx
*gui_x11.txt* For Vim version 6.1. 最后修改: 2001年9月7日
VIM 参考手册 作者:Bram Moolenaar
翻译:Zimin
VCD主页:http://vimcdoc.sf.net
Vim 的图形
www.eeworm.com/read/103618/15727871
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/102840/15756478
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