Welcome![Sign In][Sign Up]
Location:
Search - TF.e

Search list

[Other resourcewel

Description: class NumberListener implements ActionListener{ public void actionPerformed(ActionEvent e){ if (!append) { tf.setText(\"\") append=true } String s=tf.getText() s+=e.getActionCommand() tf.setText(s) if (!btn[10].isEnabled()){ for(int i=10 i<=14 i++) btn[i].setEnabled(true) } }-class NumberListener implements ActionL istener (public void actionPerformed (Action Event e) (if (! append) (tf.setText ( "") append = true;) String s = tf.getText () s = e.getActionC ommand () tf.setText (s) if (! btn [10]. isEnabl ed ()) (for (int i = 10 i
Platform: | Size: 11036 | Author: lukairun | Hits:

[Other systemswel

Description: class NumberListener implements ActionListener{ public void actionPerformed(ActionEvent e){ if (!append) { tf.setText("") append=true } String s=tf.getText() s+=e.getActionCommand() tf.setText(s) if (!btn[10].isEnabled()){ for(int i=10 i<=14 i++) btn[i].setEnabled(true) } }-class NumberListener implements ActionL istener (public void actionPerformed (Action Event e) (if (! append) (tf.setText ( "") append = true;) String s = tf.getText () s = e.getActionC ommand () tf.setText (s) if (! btn [10]. isEnabl ed ()) (for (int i = 10 i
Platform: | Size: 11264 | Author: lukairun | Hits:

[matlabnorm2

Description: [自動控制]Time domain 2 norm 計算程式。輸入system function(由TF, ZPK, SS, FDS建立),程式會自動計算2-norm.-NORM2(G) computes the 2-norm, i.e. the RMS value, of a strictly proper stable system G (created with either TF, ZPK, SS, or FRD). || [RMS_VALUE, AUG_ROUTH_TABLE]=NORM2(G) returns the RMS value and the augmented routh table of the given system. || Get the numerator and denominator of the system transfer function
Platform: | Size: 1024 | Author: Sam Chan | Hits:

[Internet-NetworkTFSClient

Description: 微软的Team Foundation Server的命令行工具TF.exe独立运行程序-Team Foundation Server s TF.exe
Platform: | Size: 2292736 | Author: emile | Hits:

[Linux-UnixSD_Partition

Description: 在 Fedora 8下,将一张4G的TF卡(MicroSD),格成两个2G的分区,一个主分区,一个逻辑分区。 ps:SD卡有TF卡(现在通称MicroSD),SD卡,MiniSD卡,SDHC等多种,长的不一样;除此之外,还有一种MMC卡。 指令:fdisk 用途:观察硬盘之实体使用情形与分割硬盘用。 使用方法:       一、在 console 上输入 fdisk -l /dev/sdb ,观察硬盘之实体使用情形。       二、在 console 上输入 fdisk /dev/sdb,可进入分割硬盘模式。         1. 输入 m 显示所有命令列示。         2. 输入 p 显示硬盘分割情形。         3. 输入 a 设定硬盘启动区。         4. 输入 n 设定新的硬盘分割区。         4.1. 输入 e 硬盘为[延伸]分割区(extend)。          4.2. 输入 p 硬盘为[主要]分割区(primary)。         5. 输入 t 改变硬盘分割区属性。         6. 输入 d 删除硬盘分割区属性。         7. 输入 q 结束不存入硬盘分割区属性。         8. 输入 w 结束并写入硬盘分割区属性。 -SD card partition tool
Platform: | Size: 2048 | Author: JkHung | Hits:

[OtherLJQ

Description: 本压缩包是我常用连接器PCB封装,希望对你有用.包括FPC连接器、四合一卡座SD+MS+MMC+MS、SD卡座 push push型、mini pci e 52pin连接器、TF卡座、DDR2 200PIN等连接器。-The compression package that I used the connector PCB package, want to be useful to you. Including FPC connectors, four are CARD SD+ MS+ MMC+ MS, SD card connector push push-type, mini pci e 52pin connector, TF card Block, DDR2 200PIN such as connectors.
Platform: | Size: 77824 | Author: yanlei | Hits:

[Mathimatics-Numerical algorithmsmodified-stfd_esprit

Description: 提 出了基于修正空间 时频分布( S TF D) 矩阵 的 ES P RI T算法 以实现 对宽 带线性调 频信号 的到达 角估计-Th e a l g or i t h m f o r di r e c t i o n- o f- a r r i va l o f t he wi d e ba n d c hi r p s i gna l s ba s e d 0 1 3 .ESPRI T u s i n g t he mo di f i e d s p a t i a l t i me- f r e q ue n c y ma t r i x i S pr e s e nt e d.The mod i f i e d STFD ma t r i x whi c h h as t he s i mi l ar ma t he ma t i c a l c on st r uc t i o n wi t h t he c o va r i a nc e ma t r i x c a n be ob t a i ne d wi t h t h e c r o s s W i gn e r- Vi l l e di s t r i but i o ns o f t he o ut pu t s of t he ar r a y.Unde r t he c o nd i t i on of un i f o r m l i n e a r r a y,t he mo di f i e d STFD ma t r i x c a n b e t r a n s f or me d i nt o t he ma t r i x wh i c h h a s t he pr op e r t y of r ot a t i on a l i nva r i a nc e . The n t he ESPRI T c a n be a p pl i e d t o D O A e s t i ma t i on
Platform: | Size: 145408 | Author: fjp119 | Hits:

[Button controlDemo8

Description: 写一个应用程序,要求编写一个Panel的子类MyPanel,MyPanel中有一个文本框和一个按钮,要求MyPanel的实例作为其按钮的ActionEvent事件的监视器,当单击按钮时,程序获取文本框中的文本,并将该文本作为按钮的名称。然后再编写一个Frame的子类,即窗口。窗口的布局为BorderLayout布局。窗口中添加两个MyPanel面板,分别添加到窗口的东部区域和西部区域-MyPanel.Java package cn import java.awt.* import java.awt.event.* public class MyPanel extends Panel implements ActionListener{ TextField tf Button bt public MyPanel() { tf=new TextField(10) bt=new Button("按钮") this.add(tf) this.add(bt) this.setLayout(new FlowLayout()) bt.addActionListener(this) this.setVisible(true) } public void actionPerformed(ActionEvent e) { if(e.getSource()==bt){ bt.setLabel(tf.getText()) } } } MyFrame.Java package cn import java.awt.BorderLayout import java.awt.Frame import java.awt.event.* public class MyFrame extends Frame { MyPanel p1,p2 public MyFrame() { p1=new MyPanel() p2=new MyPanel() this.setLayout(new BorderLayout()) this.add(p1) this.add(p2) this.setBounds(100,100,400,200) this.setVisible(true) this.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent arg0) { System.exit(0) } }) this.
Platform: | Size: 4096 | Author: | Hits:

[Home Personal applicationamp15

Description: ATTINY15 单片机D类功放电路及源码 Last change: TF 8 Sep 99 8:18 pm *************************************************************************** * A P P L I C A T I O N N O T E F O R T H E A V R F A M I L Y * * Number : AVR000 * File Name : T15def.inc * Title : Register/Bit Definitions for the ATtiny15 * Date : 1999.09.08 * Version : 1.00 * Support E-Mail : avr@atmel.com * Target MCU : ATtiny15-Last change: TF 8 Sep 99 8:18 pm *************************************************************************** * A P P L I C A T I O N N O T E F O R T H E A V R F A M I L Y * * Number : AVR000 * File Name : T15def.inc * Title : Register/Bit Definitions for the ATtiny15 * Date : 1999.09.08 * Version : 1.00 * Support E-Mail : avr@atmel.com * Target MCU : ATtiny15
Platform: | Size: 58368 | Author: 李生 | Hits:

[SCMsadas

Description: 2D FDTD – UPML code with TF / SF formulation Notes :: E at half integer time intervals -2D FDTD – UPML code with TF/SF formulation Notes :: E at half integer time intervals and H at integer time integer time integer time integer time
Platform: | Size: 2048 | Author: 李墨伊 | Hits:

[Othermt4R

Description: 你将EA附加到任何你想要的1H图表。 如果你要交易的一篮子(即美元兑加元、欧元兑美元、英镑兑美元)你要把EA只有其中的3对。 从arbomat(TF arbomat可以是任何你想要的)你读3的值(即80,100,20),你必须输入这些值为3对窗口值设置为篮子和目标神奇的数字(如果你愿意)。这就是全部. 你可以同时管理不同的篮子,但记住每个篮子必须有一个不同的魔术号码… - Sym(you attach the EA to any 1h chart you want. If you are going to trade a basket (i.e. USDCAD, EURUSD, GBPUSD) you have to attach the EA to only one of these 3 pairs. From arbomat (TF of arbomat can be whatever you want) you read 3 values (i.e. 80, -100, -20) and you have to input these values into the 3 pairs window value, set the magic number for the basket and a target (if you wish). That's all. You can manage different baskets simultaneously, but remember each basket must have a different magic number.. -Sym)
Platform: | Size: 4096 | Author: 春天的石头 | Hits:

[JSP/Java连连看javafx

Description: 连连看,用javafx实现, this.setOnMouseClicked(e -> { if (e.getButton() == MouseButton.PRIMARY) { x2 = (int) ((e.getX() - w) / w); y2 = (int) ((e.getY() - w) / w); g.drawImage(new Image("llkpics/checked.png"), x2 * w + w, y2 * w + w, w/6,w/6); if (check == false) { x1 = x2; y1 = y2; }//2次一循环 else { int grade = 0; if (isSame(x1, y1, x2, y2) && isCut(x1, y1, x2, y2) && map[y1 * COL + x1] != BLANK && map[y2 * COL + x2] != BLANK) { grade = Integer.parseInt(MainFrame.tf.getText()) + 2; MainFrame.tf.setText(String.valueOf(grade)); //不同的点击 if (x1 != x2 || y1 != y2) { map[y1 * COL + x1] = BLANK; map[y2 * COL + x2] = BLANK; myRepaint(); } } } check = !check; } });(this.setOnMouseClicked(e -> { if (e.getButton() == MouseButton.PRIMARY) { x2 = (int) ((e.getX() - w) / w); y2 = (int) ((e.getY() - w) / w); g.drawImage(new Image("llkpics/checked.png"), x2 * w + w, y2 * w + w, w/6,w/6); if (check == false) { x1 = x2; y1 = y2; } else { int grade = 0; if (isSame(x1, y1, x2, y2) && isCut(x1, y1, x2, y2) && map[y1 * COL + x1] != BLANK && map[y2 * COL + x2] != BLANK) { grade = Integer.parseInt(MainFrame.tf.getText()) + 2; MainFrame.tf.setText(String.valueOf(grade)); if (x1 != x2 || y1 != y2) { map[y1 * COL + x1] = BLANK; map[y2 * COL + x2] = BLANK; myRepaint(); } } } check = !check; } });)
Platform: | Size: 245760 | Author: 谭先生456 | Hits:

CodeBus www.codebus.net