代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/338071/12325876
asv draw5.asv
%h0=figure('position',[50 50 900 650],...
% 'name','原信号归一化以及去重力处理演示');
%b3+b4
%偏移量补偿
Temp11=T1(1:5);
Temp11(6:(size(T1,1)+5))=T1(:);
Temp11(size(Temp11):(size(Temp11)+2))=T1((size(T1)-2):size
www.eeworm.com/read/338071/12325882
m draw3.m
subplot(611);
plot(MK1,'r');grid on;ylabel('Signal 1');
subplot(612);
plot(NorMK1,'r');grid on;
subplot(613);
plot(MK2,'b');grid on;ylabel('Signal 2');
subplot(614);
plot(NorMK2,'b');grid on;
www.eeworm.com/read/338071/12325885
m draw4.m
T3=filter(window,1,Temp3);
T3(1:300)=[];%删除增加项
NorMK3_DH=NorMK3-T3;%
h0=figure('position',[50 50 900 650],...
'name','原信号归一化以及去重力处理演示');
subplot(221);
plot(MK3);grid on;title('原信号');
axis
www.eeworm.com/read/338071/12325904
asv draw1.asv
subplot(411);
plot(NorMK2_DH,'b');grid on;
axis([500 1500 -1 1]);
subplot(412);
plot(NorMK2_DH_b1,'b');grid on;
axis([500 1500 -1 1]);
Temp22=NorMK2_DH(1:101);
Temp22(102:(size(NorMK2_DH,1)
www.eeworm.com/read/251652/12326921
cur id_draw.cur
www.eeworm.com/read/251533/12339086
rc2 draw.rc2
//
// DRAW1.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/337058/12399793
rc2 draw.rc2
//
// DRAW.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
//////
www.eeworm.com/read/148879/12417764
m run_draw.m
function Run_Draw(Fig_UserData,isYnHold)
%创建一个函数对应绘图函数实现的功能
%Fig_UserData为输入参数,对应于Figure的属性'UserData'的值'
%isYnHold为hold on和hold off的判断位
if length(Fig_UserData)~=7
ErrorDlg('输入参量不符合长度要求');
www.eeworm.com/read/250043/12440854
java draw2.java
import java.awt.*;
public class Draw2 extends Frame{
public Draw2(String title){
super(title);
}
public void paint(Graphics g){
g.setColor(Color.red);
g.fillRect(60,30,50,50);
www.eeworm.com/read/250043/12440893
java draw3.java
import java.awt.*;
import java.awt.event.*;
public class Draw3 extends Frame{
Graphics g;
int x,y, ox, oy;
public Draw3(String title){
super(title);
setSize(200,200);
setVisi