亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

STATIC

像在VB,C#,C,C++,Java,PHP,Objective-C,JavaScript中我們可以看到STATIC作為關鍵字和函數出現,在其他的高級計算機語言如FORTRAN、ALGOL、COBOL、BASIC、LISP、SNOBOL、PL/1、Pascal、PROLOG、Ada等語言中也是有出現的,只是有著不同的作用,對于其具體作用,讀者有需要的時候是可以具體查閱的。
  • Essentials+of+Short-Range+Wireless

    Over the past ten years there has been a revolution in the devel- opment and acceptance of mobile products. In that period, cel- lular telephony and consumer electronics have moved from the realm of science fiction to everyday reality. Much of that revolu- tion is unremarkable – we use wireless, in its broadest sense, for TV remote controls, car keyfobs, travel tickets and credit card transactions every day. At the same time, we have increased the number of mobile devices that we carry around with us. However, in many cases the design and function of these and other STATIC products are still constrained by the wired connections that they use to transfer and share data.

    標簽: Short-Range Essentials Wireless of

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • ESD Protection Device and Circuit Design

    The challenges associated with the design and implementation of Electro- STATIC Discharge (ESD) protection circuits become increasingly complex as technology is scaled well into nano-metric regime. One must understand the behavior of semiconductor devices under very high current densities, high temperature transients in order to surmount the nano-meter ESD challenge. As a consequence, the quest for suitable ESD solution in a given technology must start from the device level. Traditional approaches of ESD design may not be adequate as the ESD damages occur at successively lower voltages in nano-metric dimensions.

    標簽: Protection Circuit Device Design ESD and

    上傳時間: 2020-06-05

    上傳用戶:shancjb

  • ESD+and+Electronic+Equipment

    Since electronic equipment was first developed, STATIC electricity has been a source of problems for users and designers. In the last few years, however, electroSTATIC discharge (ESD) has become a source of major problems. This has occurred because newer electronic devices, such as integrated circuits, are much more susceptible to ESD problems than previous devices, such as vacuum tubes. Another trend compounding this ESD susceptibility problem is the spread of sophisticated equipment into home and office environments where ESD is quite common.

    標簽: Electronic Equipment ESD and

    上傳時間: 2020-06-05

    上傳用戶:shancjb

  • Neural Systems For Control

    If you are acquainted with neural networks, automatic control problems are good industrial applications and have a dynamic or evolutionary nature lacking in STATIC pattern-recognition; control ideas are also prevalent in the study of the natural neural networks found in animals and human beings. If you are interested in the practice and theory of control, artificial neu- ral networks offer a way to synthesize nonlinear controllers, filters, state observers and system identifiers using a parallel method of computation.

    標簽: Control Systems Neural For

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • PID-小車類-手機遙控十分mimi藍牙小車V2資料全部開源

    PID-小車類-手機遙控十分mimi藍牙小車V2資料全部開源/**************************************************************************函數功能:增量PI控制器入口參數:編碼器測量值,目標速度返回  值:電機PWM根據增量式離散PID公式 pwm+=Kp[e(k)-e(k-1)]+Ki*e(k)+Kd[e(k)-2e(k-1)+e(k-2)]e(k)代表本次偏差 e(k-1)代表上一次的偏差  以此類推 pwm代表增量輸出在我們的速度控制閉環系統里面,只使用PI控制pwm+=Kp[e(k)-e(k-1)]+Ki*e(k)**************************************************************************/int Speed_Incremental_PI (int Encoder,int Target){ STATIC int Bias,Pwm,Last_bias; Bias=Encoder-Target;                //計算偏差 Pwm+=Speed_Kp*(Bias-Last_bias)+Speed_Ki*Bias;   //增量式PI控制器if(Pwm>500)Pwm=500;else if(Pwm<-500)Pwm=-500; Last_bias=Bias;                   //保存上一次偏差  return Pwm;                         //增量輸出}

    標簽: pid 藍牙小車

    上傳時間: 2022-06-01

    上傳用戶:20125101110

  • MATLAB-GUI的膚色特征人臉識別系統設計

    本次畢業論文的內容主要包括兩個方面:(1)確定基于膚色特征的人臉識別算法流程并實現MATLAB仿真.根據目前已有的人臉識別算法和學過的有關圖像處理知識確定出適合本次論文的最優算法,確定算法時的重點是將膚色判斷作為人臉檢測的預處理,即研究膚色模型的選取和建立、膚色分割的方法以及人臉區域的獲得;再根據面部特征提取出人臉的大致框架,通過人臉面積、高寬比、歐拉數等來判斷每塊區域是否為人臉,最后得到圖片中人臉的比較精確的位置。在確定算法時就應該要綜合考慮各方面的因素,要盡可能的提高人臉識別的時間效率,提高識別率。(2)設計出GUI界面,實現人臉識別功能。MATLAB/GUI自帶了很多工具箱函數,方便快捷。設計好的GUI界面只需通過鼠標等簡潔的方式與計算機交換信息,選擇想要運行的程序,實現快速識別。本次設計的GUT界面有窗口、光標、按鍵、菜單、文字說明等對象(Object),主要包含讀入圖像,轉換顏色空間,皮膚概率圖像,皮膚二值化和定位五個部分,其中使用了開關按鈕(ToggleButton)、靜態文本框(STATIC Text)、坐標系(Axes)和面板(Pane1)按鈕,要對其進行合理布局,注意回調函數的嵌入。在設計過程中要熟悉MATLAB編程環境,注意控件的選用和參數設置,會根據設計要求對GUI界面進行布局,注意回調函數的編寫,以達到理想的效果。該系統可以較好的實現單人臉識別,能較準確的對其進行定位。但對于多人組和背景較復雜的圖像,會出現漏檢和錯檢的現象,需要進一步改進。

    標簽: matlab 人臉識別系統 gui

    上傳時間: 2022-07-28

    上傳用戶:qdxqdxqdxqdx

主站蜘蛛池模板: 五华县| 瓮安县| 大英县| 本溪| 浦城县| 博白县| 额敏县| 滕州市| 佳木斯市| 娄烦县| 萨迦县| 读书| 始兴县| 正定县| 四子王旗| 宁德市| 大同市| 桐柏县| 藁城市| 察哈| 南召县| 大邑县| 西畴县| 昌都县| 红桥区| 米易县| 河北省| 都兰县| 昭觉县| 桐梓县| 宁南县| 会宁县| 靖宇县| 两当县| 闽侯县| 巍山| 青田县| 太和县| 怀集县| 化州市| 巴彦淖尔市|